*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
    }
:root {
    --orange: #FF8500;
    --orange-light: #FF9E33;
    --orange-dark: #E67700;
    --gray-dark: #383838;
    --gray-mid: #666;
    --gray-light: #f5f5f5;
    --white: #FFF;
    --black: #1a1a1a;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: var(--font-body);
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: 200ms ease;
    --max-width: 1200px
    }
html {
    scroll-behavior: smooth
    }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased
    }
img {
    max-width: 100%;
    height: auto;
    display: block
    }
a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition)
    }
a:hover {
    color: var(--orange-dark)
    }
ul {
    list-style: none
    }
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px
    }
.section {
    padding: 46px 0
    }
.section-dark {
    background: var(--gray-dark);
    color: var(--white)
    }
.section-light {
    background: var(--gray-light)
    }
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-dark)
    }
.section-dark .section-title {
    color: var(--white)
    }
.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-mid);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 5px
    }
.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7)
    }
p, .section-subtitle, .noticias-header p {
    text-align: center;
    hyphens: auto
    }
.hero p {
    text-align: inherit;
    hyphens: none
    }
.nav-arc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 140px;
    pointer-events: none;
    transition: height 0.4s ease
    }
.nav-arc.scrolled {
    height: 56px
    }
.nav-arc-bg {
    position: absolute;
    top: -480px;
    left: 50%;
    transform: translatex(-50%);
    width: 1800px;
    height: 560px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 6px 30px rgba(255, 133, 0, 0.25);
    transition: all 0.4s ease;
    pointer-events: none
    }
.nav-arc.scrolled .nav-arc-bg {
    top: -530px;
    height: 530px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1)
    }
.nav-orbit {
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translatex(-50%);
    width: 100%;
    max-width: 820px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease, top 0.4s ease
    }
.nav-arc.scrolled .nav-orbit {
    opacity: 0;
    pointer-events: none
    }
.nav-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    margin-left: -35px;
    margin-top: -35px;
    pointer-events: auto;
    animation: deployArc 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
    opacity: 0
    }
.nav-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
    padding: 2px;
    transition: all var(--transition);
    cursor: pointer
    }
.nav-btn a:hover {
    background: var(--gray-dark);
    border-color: var(--gray-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
    transform: scale(1.1)
    }
.btn-1 {
    --bx: -300px;
    --by: -22px;
    animation-delay: 0.05s
    }
.btn-2 {
    --bx: -180px;
    --by: -8px;
    animation-delay: 0.1s
    }
.btn-3 {
    --bx: -60px;
    --by: 0;
    animation-delay: 0.15s
    }
.btn-4 {
    --bx: 60px;
    --by: 0;
    animation-delay: 0.2s
    }
.btn-5 {
    --bx: 180px;
    --by: -8px;
    animation-delay: 0.25s
    }
.btn-6 {
    --bx: 300px;
    --by: -22px;
    animation-delay: 0.3s
    }
@keyframes deployArc {
    0% {
        transform: translate(0, -40px) scale(.7);
        opacity: 0
        } 100% {
        transform: translate(var(--bx), var(--by)) scale(1);
        opacity: 1
        }
    }
.nav-logo-wrap {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translatex(-50%);
    z-index: 2;
    pointer-events: auto;
    transition: opacity 0.35s ease, transform 0.35s ease
    }
.nav-logo-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
    }
.nav-logo-wrap img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease
    }
.nav-arc.scrolled .nav-logo-wrap {
    opacity: 0;
    transform: translatex(-50%) translatey(-20px);
    pointer-events: none
    }
.nav-lang-arc {
    position: absolute;
    right: 20px;
    top: 94px;
    display: flex;
    gap: 6px;
    pointer-events: auto;
    z-index: 2;
    transition: opacity 0.3s ease
    }
.nav-arc.scrolled .nav-lang-arc {
    opacity: 0;
    pointer-events: none
    }
.nav-lang-arc button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--orange);
    color: var(--orange);
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase
    }
.nav-lang-arc button.active {
    background: var(--orange);
    border-color: var(--white);
    color: var(--white)
    }
.nav-compact {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: rgba(56, 56, 56, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15)
    }
.nav-arc.scrolled .nav-compact {
    opacity: 1;
    pointer-events: auto
    }
.nav-compact-links {
    display: flex;
    align-items: center;
    gap: 16px
    }
.nav-compact-links a {
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity var(--transition)
    }
.nav-compact-links a:hover {
    opacity: 1
    }
.nav-compact .nav-lang button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase
    }
.nav-compact .nav-lang button.active {
    background: var(--orange);
    border-color: var(--orange)
    }
.nav-compact-logo img {
    height: 32px;
    width: auto
    }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: auto
    }
.hero {
    position: relative;
    height: 580px;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden
    }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1
    }
.hero-slide.active {
    opacity: 1;
    z-index: 2
    }
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
    }
.hero-object-left {
    position: absolute;
    top: 5px;
    left: -400px;
    z-index: 3;
    pointer-events: none;
    opacity: 0
    }
.hero-slide.active .hero-object-left {
    animation: slideInLeft 1s 0.4s ease-out forwards
    }
.hero-object-left.exiting {
    animation: slideOutLeft 0.5s ease-in forwards
    }
.hero-object-left img {
    width: 580px;
    height: auto;
    object-fit: contain
    }
@keyframes slideInLeft {
    0% {
        left: -400px;
        opacity: 0
        } 100% {
        left: 0;
        opacity: 1
        }
    }
@keyframes slideOutLeft {
    0% {
        left: 0;
        opacity: 1
        } 100% {
        left: -400px;
        opacity: 0
        }
    }
.hero-object-right {
    position: absolute;
    bottom: -200px;
    right: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0
    }
.hero-slide.active .hero-object-right {
    animation: slideUp 1s 0.4s ease-out forwards
    }
.hero-object-right.exiting {
    animation: slideOutRight 0.5s ease-in forwards
    }
.hero-object-right img {
    width: 613px;
    height: auto
    }
@keyframes slideUp {
    0% {
        bottom: -200px;
        opacity: 0
        } 100% {
        bottom: 0%;
        opacity: .7
        }
    }
@keyframes slideOutRight {
    0% {
        right: 0;
        opacity: .7
        } 100% {
        right: -600px;
        opacity: 0
        }
    }
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 133, 0, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    z-index: 1;
    pointer-events: none
    }
.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 133, 0, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    z-index: 1;
    pointer-events: none
    }
.section-arc {
    position: relative
    }
.section-arc::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: radial-gradient(ellipse 60% 80px at 50% 0%, var(--orange) 0%, transparent 70%);
    opacity: 0.08;
    pointer-events: none
    }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(56, 56, 56, 0.8) 0%, rgba(56, 56, 56, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4
    }
.hero-content {
    max-width: 800px;
    padding: 0 24px;
    position: relative;
    z-index: 5
    }
.hero-tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5)
    }
.hero-tagline span {
    color: var(--orange)
    }
.hero-highlight {
    color: var(--white);
    background: var(--orange);
    padding: 1px 10px;
    border-radius: 6px;
    vertical-align: middle;
    white-space: nowrap
    }
.hero-highlight-alt {
    color: var(--orange);
    white-space: nowrap
    }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--orange);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5)
    }
.hero-sub .sep {
    color: var(--white);
    font-weight: 300
    }
.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--orange);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.hero-cta:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translatey(-2px);
    box-shadow: 0 8px 24px rgba(255, 133, 0, 0.3)
    }
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px)
    }
.hero-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(255, 133, 0, 0.3)
    }
.hero-arrow-prev {
    left: 20px
    }
.hero-arrow-next {
    right: 20px
    }
.hero-pips {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translatex(-50%);
    display: flex;
    gap: 12px;
    z-index: 6
    }
.hero-pip {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition)
    }
.hero-pip.active {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 8px rgba(255, 133, 0, 0.5)
    }
/* ═══ Autoplay Progress (SVG circle) ═══ */
.autoplay-progress {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    pointer-events: none
    }
.autoplay-progress svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    --progress: 0;
    fill: none;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-dasharray: 125.6;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-width: 3px
    }
/* ═══ Stagger entrance animations ═══ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
        }
    to {
        opacity: 1;
        transform: translateY(0)
        }
    }
.hero-slide.active .hero-tagline {
    animation: fadeInUp 0.5s ease both
    }
.hero-slide.active .hero-sub {
    animation: fadeInUp 0.5s ease 0.15s both
    }
.hero-slide.active .hero-cta {
    animation: fadeInUp 0.5s ease 0.3s both
    }
/* ═══ Background zoom ═══ */
.hero-slide .hero-bg {
    transition: transform 5.5s ease
    }
.hero-slide.active .hero-bg {
    transform: scale(1.06)
    }
/* ═══ Creative layouts per slide ═══ */
/* Slide 1: Centered glow */
.hero-slide.slide-center .hero-content {
    text-align: center;
    align-items: center
    }
.hero-slide.slide-center .hero-overlay {
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%)
    }
/* Slide 2: Left + orange accent bar */
.hero-slide.slide-left .hero-content {
    text-align: left;
    align-items: flex-start;
    max-width: 600px;
    margin-left: 5%;
    padding-left: 24px;
    border-left: 4px solid var(--orange)
    }
.hero-slide.slide-left .hero-overlay {
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%)
    }
/* Slide 3: Right + glass panel */
.hero-slide.slide-right .hero-content {
    text-align: right;
    align-items: flex-end
    }
.hero-panel {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 32px 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 580px
    }
.hero-slide.slide-right .hero-overlay {
    background: linear-gradient(225deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 50%)
    }
/* Slide 4: Bottom-left */
.hero-slide.slide-right-edge .hero-content {
    text-align: right;
    align-items: flex-end;
    justify-content: center;
    margin-right: 5%;
    max-width: 600px;
    margin-left: auto;
    padding-right: 24px;
    border-right: 4px solid var(--orange)
    }
.hero-slide.slide-right-edge .hero-overlay {
    justify-content: flex-end;
    background: linear-gradient(225deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 50%)
    }
/* Slide 5: Center + underline accent */
.hero-slide.slide-underline .hero-content {
    text-align: center;
    align-items: center
    }
.hero-slide.slide-underline .hero-tagline::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--orange);
    margin: 12px auto 0;
    border-radius: 2px
    }
.hero-slide.slide-underline .hero-overlay {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%)
    }
/* Slide 1: Split row */
.hero-slide.slide-split-block .hero-overlay {
    justify-content: center
    }
.hero-slide.slide-split-block .hero-content {
    width: 100%;
    max-width: 1300px
    }
.hero-split-row {
    display: flex;
    gap: 15%;
    width: 100%;
    align-items: center
    }
.hero-split-col {
    flex: 1
    }
.hero-split-col:first-child {
    text-align: right
    }
.hero-split-col:last-child {
    text-align: right
    }
.hero-slide.slide-split-block .hero-sub {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal;
    text-align: left;
    }
/* Slide 3: Split + glass panel */
.hero-slide.slide-split-glass .hero-split-row {
    align-items: stretch
    }
.hero-slide.slide-split-glass .hero-split-col:first-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right
    }
.hero-slide.slide-split-glass .hero-split-col:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-start
    }
.hero-slide.slide-split-glass .hero-sub {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal
    }
.hero-slide.slide-split-glass .hero-panel {
    width: 100%
    }
@media (max-width: 1024px) {
    .hero-split-row {
        flex-direction: column;
        gap: 16px;
        text-align: center
        }
    .hero-split-col:first-child,
    .hero-split-col:last-child {
        text-align: center
        }
    .hero-slide.slide-split-block .hero-sub {
        font-size: 1rem;
        text-align: center
        }
    .hero-slide.slide-split-glass .hero-sub {
        text-align: center
        }
    }
/* Slide 5: Split title */
.hero-split-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px
    }
.hero-split-left {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    text-align: right
    }
.hero-split-right {
    display: flex;
    flex-direction: column;
    text-align: left
    }
.hero-accent {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5)
    }
.hero-slide.slide-underline .hero-sub {
    text-align: center
    }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
    }
.about-text p {
    font-size: 1.0625rem;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-bottom: 24px
    }
.about-cards {
    display: grid;
    gap: 16px
    }
.about-card {
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 133, 0, 0.12);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--orange);
    transition: transform var(--transition)
    }
.about-card:hover {
    transform: translatex(4px)
    }
.about-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-dark)
    }
.about-card p {
    font-size: 0.9375rem;
    color: var(--gray-mid);
    line-height: 1.6
    }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 0 60px
    }
.stat-item {
    text-align: center
    }
.stat-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all var(--transition)
    }
.stat-item:hover .stat-circle {
    background: rgba(255, 133, 0, 0.1);
    transform: scale(1.05)
    }
.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--orange);
    line-height: 1
    }
.stat-plus {
    font-size: 1rem;
    color: var(--orange);
    font-weight: 600
    }
.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500
    }
.stats-stamp {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0.15;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3))
    }
.stats-stamp img {
    height: 75vh;
    max-height: 450px;
    width: auto;
    mask-image: radial-gradient(ellipse 70% 95% at 50% 50%, black 45%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 95% at 50% 50%, black 45%, transparent 100%)
    }
@media (max-width: 1500px) {
    .stats-stamp img {
        height: 100vh;
        max-height: 700px
        }
    }
@media (max-width: 1300px) {
    .stats-stamp img {
        height: 120vh;
        max-height: 850px
        }
    }
@media (max-width: 1150px) {
    .stats-stamp img {
        height: 140vh;
        max-height: 1000px
        }
    }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
    }
.solution-card {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent
    }
.solution-card:hover {
    transform: translatey(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange-light)
    }
.solution-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 133, 0, 0.1);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition)
    }
.solution-card:hover .solution-icon-wrap {
    background: var(--orange)
    }
.solution-icon {
    width: 28px;
    height: 28px;
    color: var(--orange);
    transition: color var(--transition)
    }
.solution-card:hover .solution-icon {
    color: var(--white)
    }
.solution-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-dark)
    }
.solution-card p {
    font-size: 0.9375rem;
    color: var(--gray-mid);
    line-height: 1.6
    }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
    }
.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 133, 0, 0.12);
    box-shadow: var(--shadow);
    transition: all var(--transition)
    }
.project-card:hover {
    transform: translatey(-4px);
    box-shadow: var(--shadow-hover)
    }
.project-image {
    aspect-ratio: 16/9;
    overflow: hidden
    }
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition)
    }
.project-card:hover .project-image img {
    transform: scale(1.05)
    }
.project-body {
    padding: 20px
    }
.project-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px
    }
.project-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-dark)
    }
.project-body p {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.5;
    margin-bottom: 12px
    }
.project-meta {
    font-size: 0.8125rem;
    color: var(--gray-mid)
    }
.clients-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scroll-clients 30s linear infinite;
    width: max-content
    }
@keyframes scroll-clients {
    0% {
        transform: translateX(0)
        } 100% {
        transform: translateX(-50%)
        }
    }
.client-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
    overflow: hidden
    }
.client-circle:hover {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 133, 0, 0.1)
    }
.client-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition)
    }
.client-circle:hover img {
    filter: grayscale(0);
    opacity: 1
    }
.clients-wrapper {
    overflow: hidden;
    padding: 8px 0
    }
.clients-wrapper:hover .clients-track {
    animation-play-state: paused
    }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
    }
.news-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 133, 0, 0.12);
    box-shadow: var(--shadow);
    transition: all var(--transition)
    }
.news-card:hover {
    transform: translatey(-4px);
    box-shadow: var(--shadow-hover)
    }
.news-image {
    aspect-ratio: 16/9;
    overflow: hidden
    }
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition)
    }
.news-card:hover .news-image img {
    transform: scale(1.05)
    }
.news-body {
    padding: 20px
    }
.news-date {
    font-size: 0.8125rem;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 8px
    }
.news-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-dark)
    }
.news-body p {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.5
    }
.news-footer {
    text-align: center;
    margin-top: 40px
    }
.news-cta {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--orange);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid var(--orange);
    border-radius: 50px;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.news-cta:hover {
    background: var(--orange);
    color: var(--white)
    }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
    }
.contact-form {
    display: grid;
    gap: 16px
    }
.form-group {
    position: relative
    }
.form-input, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-dark);
    transition: border-color var(--transition);
    background: var(--white)
    }
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--orange)
    }
.form-textarea {
    min-height: 140px;
    resize: vertical
    }
.form-submit {
    padding: 16px 40px;
    background: var(--orange);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-self: start
    }
.form-submit:hover {
    background: var(--orange-dark);
    transform: translatey(-2px);
    box-shadow: 0 8px 24px rgba(255, 133, 0, 0.3)
    }
.form-feedback {
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    display: none
    }
.form-feedback.success {
    color: #22c55e;
    display: block
    }
.form-feedback.error {
    color: #ef4444;
    display: block
    }
.contact-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray-dark)
    }
.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9375rem;
    color: var(--gray-mid)
    }
.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--orange)
    }
.contact-item strong {
    color: var(--gray-dark);
    display: block;
    font-weight: 600;
    margin-bottom: 2px
    }
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 24px
    }
.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-mid);
    transition: all var(--transition)
    }
.contact-social a:hover {
    background: var(--orange);
    color: var(--white)
    }
.footer {
    background: var(--gray-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 32px
    }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
    }
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 12px
    }
.footer h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    transition: color var(--transition)
    }
.footer-links a:hover {
    color: var(--orange)
    }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8125rem
    }
.noticias-header {
    padding: 100px 0 56px;
    background: var(--gray-dark);
    text-align: center;
    color: var(--white)
    }
.noticias-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px
    }
.noticias-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7)
    }
.noticias-list {
    padding: 64px 0
    }
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
    }
.noticia-detalle {
    padding: 160px 0 64px
    }
.noticia-detalle h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px
    }
.noticia-meta {
    color: var(--gray-mid);
    font-size: 0.9375rem;
    margin-bottom: 32px
    }
.noticia-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    max-width: 720px
    }
.noticia-body p {
    margin-bottom: 20px
    }
.noticia-body h2, .noticia-body h3 {
    margin-top: 32px;
    margin-bottom: 16px
    }
.noticia-body ul, .noticia-body ol {
    margin-bottom: 20px;
    padding-left: 24px
    }
.noticia-body li {
    margin-bottom: 8px
    }
.noticia-body img {
    border-radius: var(--radius);
    margin: 24px 0
    }
.noticia-body blockquote {
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    color: var(--gray-mid);
    font-style: italic;
    margin: 24px 0
    }
.reveal {
    opacity: 0;
    transform: translatey(30px);
    transition: opacity 0.6s ease, transform 0.6s ease
    }
.reveal.visible {
    opacity: 1;
    transform: translatey(0)
    }
@media (max-width: 1024px) {
    .solutions-grid, .projects-grid, .news-grid, .noticias-grid {
        grid-template-columns: repeat(2, 1fr)
        }
    .footer-grid {
        grid-template-columns: 1fr 1fr
        }
    .stats-stamp {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        margin: 32px auto 0;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2))
        }
    .stats-stamp img {
        height: auto;
        width: 55%;
        max-width: 260px;
        mask-image: none;
        -webkit-mask-image: none
        }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin: 0 32px
        }
    }
@media (max-width: 768px) {
    .section {
        padding: 64px 0
        }
    p, .section-subtitle, .noticias-header p {
        text-align: left;
        hyphens: none
        }
    .hero-arrow {
        width: 36px;
        height: 36px
        }
    .hero-arrow svg {
        width: 16px;
        height: 16px
        }
    .hero-arrow-prev {
        left: 8px
        }
    .hero-arrow-next {
        right: 8px
        }
    .hero {
        height: 420px;
        min-height: 350px;
        max-height: 480px
        }
    .hero-object-left {
        bottom: 10%
        }
    .hero-object-left img {
        width: 260px
        }
    .hero-object-right {
        bottom: -120px
        }
    .hero-object-right img {
        width: 320px
        }
    @keyframes slideInLeft {
        0% {
            left: -300px;
            opacity: 0
            } 100% {
            left: 0;
            opacity: .7
            }
        }
    @keyframes slideOutLeft {
        0% {
            left: 0;
            opacity: .7
            } 100% {
            left: -300px;
            opacity: 0
            }
        }
    @keyframes slideUp {
        0% {
            bottom: -120px;
            opacity: 0
            } 100% {
            bottom: 3%;
            opacity: .7
            }
        }
    @keyframes slideOutRight {
        0% {
            right: 0;
            opacity: .7
            } 100% {
            right: -300px;
            opacity: 0
            }
        }
    .nav-arc {
        height: 120px
        }
    .nav-arc.scrolled {
        height: 52px
        }
    .nav-arc-bg {
        width: 1200px;
        height: 480px;
        top: -410px
        }
    .nav-arc.scrolled .nav-arc-bg {
        top: -460px;
        height: 460px
        }
    .nav-orbit {
        max-width: 100%;
        top: 78px
        }
    .nav-btn {
        width: 50px;
        height: 50px;
        margin-left: -28px;
        margin-top: -28px
        }
    .nav-btn a {
        font-size: 0.4rem;
        letter-spacing: 0.2px
        }
    .btn-1 {
        --bx: -170px;
        --by: -16px
        }
    .btn-2 {
        --bx: -100px;
        --by: -6px
        }
    .btn-3 {
        --bx: -30px;
        --by: 0
        }
    .btn-4 {
        --bx: 30px;
        --by: 0
        }
    .btn-5 {
        --bx: 100px;
        --by: -6px
        }
    .btn-6 {
        --bx: 170px;
        --by: -16px
        }
    .nav-logo-wrap {
        top: 1px
        }
    .nav-logo-wrap img {
        height: 45px
        }
    .nav-lang-arc {
        top: 82px;
        right: 10px
        }
    .nav-lang-arc button {
        width: 26px;
        height: 26px;
        font-size: 0.5rem
        }
    .nav-toggle {
        display: block
        }
    .nav-compact-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gray-dark);
        flex-direction: column;
        padding: 12px 20px;
        gap: 2px
        }
    .nav-compact-links.open {
        display: flex
        }
    .nav-compact-links a {
        padding: 10px 14px;
        width: 100%;
        border-radius: 8px
        }
    .nav-compact-links a:hover {
        background: rgba(255, 255, 255, 0.08)
        }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr
        }
    .solutions-grid, .projects-grid, .news-grid, .noticias-grid {
        grid-template-columns: 1fr
        }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
        }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 0 24px
        }
    .stat-circle {
        width: 110px;
        height: 110px
        }
    .clients-track {
        gap: 24px
        }
    .client-circle {
        width: 80px;
        height: 80px;
        padding: 0
        }
    }
@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1.75rem
        }
    .section-title {
        font-size: 1.75rem
        }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0 16px
        }
    }