:root {
    --azul: #1E1A34;
    --azul-2: #111225;
    --amarillo: #F6BE00;
    --oro: #ffd65a;
    --gris: #f4f6fb;
    --texto: #1b1f2a;
    --muted: #697080;
    --white: #fff;
    --border: rgba(30, 26, 52, .1);
    --shadow: 0 24px 70px rgba(10, 12, 28, .14);
    --radius: 28px;
    --container: 1180px;
    --ease: cubic-bezier(.2, .8, .2, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Barlow, system-ui, -apple-system, Segoe UI, sans-serif;
    background: #fff;
    color: var(--texto);
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: #fff;
    color: #000;
    padding: 10px;
    z-index: 999
}

.skip-link:focus {
    left: 8px
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--amarillo), #fff);
    z-index: 100
}

.ambient {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    border-radius: 999px;
    filter: blur(50px);
    opacity: .22
}

.ambient-a {
    width: 340px;
    height: 340px;
    background: var(--amarillo);
    top: 12%;
    right: -120px
}

.ambient-b {
    width: 420px;
    height: 420px;
    background: #23366d;
    bottom: 10%;
    left: -180px
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    transition: .28s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.site-header.is-scrolled {
    background: rgba(17, 18, 37, .86);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18)
}

.header-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand img {
    height: 54px;
    width: auto
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px
}

.main-nav a {
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
    font-size: .96rem;
    padding: 11px 13px;
    border-radius: 999px;
    transition: .22s
}

.main-nav a:hover,
.main-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .11)
}

.nav-access {
    background: var(--amarillo) !important;
    color: var(--azul) !important;
    box-shadow: 0 14px 32px rgba(246, 190, 0, .22)
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1)
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 999px
}

.hero {
    position: relative;
    min-height: 100svh;
    background: var(--azul);
    color: #fff;
    overflow: hidden
}

.hero-media {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 18, 37, .96), rgba(17, 18, 37, .72), rgba(17, 18, 37, .45)), url('../img/hero-control-completo.png') center/cover;
    transform: scale(1.04);
    animation: slowZoom 18s ease-in-out infinite alternate
}

.digital-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
    animation: gridDrift 16s linear infinite
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
    min-height: 100svh;
    padding: 132px 0 72px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    font-size: .82rem;
    color: var(--amarillo);
    margin: 0 0 16px
}

.eyebrow span {
    width: 32px;
    height: 2px;
    background: var(--amarillo);
    display: inline-block
}

.hero h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    line-height: .88;
    margin: 0 0 24px;
    letter-spacing: -.055em;
    max-width: 860px
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
    max-width: 720px;
    margin: 0
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 28px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: .25s var(--ease);
    cursor: pointer
}

.btn-primary {
    background: linear-gradient(135deg, var(--amarillo), var(--oro));
    color: var(--azul);
    box-shadow: 0 18px 42px rgba(246, 190, 0, .25)
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px)
}

.btn-secondary.dark {
    border-color: rgba(30, 26, 52, .16);
    color: var(--azul);
    background: #fff
}

.btn:hover {
    transform: translateY(-3px)
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .72)
}

.trust-strip strong {
    color: #fff
}

.trust-strip i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amarillo)
}

.ops-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .07));
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    border-radius: 32px;
    padding: 18px;
    backdrop-filter: blur(22px);
    transform-style: preserve-3d
}

.ops-top,
.console-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.ops-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35)
}

.ops-top span:first-child {
    background: #ff6b6b
}

.ops-top span:nth-child(2) {
    background: #ffd166
}

.ops-top span:nth-child(3) {
    background: #47d18c
}

.ops-top b {
    margin-left: auto;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .12em;
    font-size: .78rem
}

.ops-screen {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16)
}

.ops-screen img {
    height: 330px;
    width: 100%;
    object-fit: cover
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--amarillo), transparent);
    box-shadow: 0 0 20px var(--amarillo);
    animation: scanY 3.4s ease-in-out infinite
}

.ops-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(17, 18, 37, .78);
    margin-top: 14px;
    padding: 16px;
    border-radius: 20px
}

.ops-status small {
    display: block;
    color: rgba(255, 255, 255, .58)
}

.ops-status strong {
    font-size: 1.1rem
}

.ops-status em {
    font-style: normal;
    color: var(--amarillo);
    font-weight: 900;
    font-size: .82rem
}

.ops-checks {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 14px 0 0;
    padding: 0
}

.ops-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
    font-weight: 700
}

.ops-checks span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--amarillo);
    box-shadow: 0 0 0 6px rgba(246, 190, 0, .1)
}

.marquee {
    background: var(--amarillo);
    color: var(--azul);
    overflow: hidden;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.marquee div {
    display: flex;
    width: max-content;
    animation: marquee 24s linear infinite
}

.marquee span {
    padding: 17px 34px;
    white-space: nowrap
}

.section {
    padding: 104px 0;
    position: relative
}

.section h2 {
    font-size: clamp(2.2rem, 4.8vw, 4.2rem);
    line-height: 1;
    margin: 0 0 20px;
    letter-spacing: -.04em;
    color: var(--azul)
}

.section p {
    font-size: 1.08rem;
    line-height: 1.72;
    color: var(--muted)
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px
}

.section-head .eyebrow {
    justify-content: center
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.spotlight {
    background: linear-gradient(180deg, #fff, var(--gris))
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px
}

.benefit-grid article {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 14px 38px rgba(15, 18, 34, .06);
    transition: .25s
}

.benefit-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 190, 0, .5)
}

.benefit-grid strong {
    display: block;
    color: var(--azul);
    font-size: 1.07rem
}

.benefit-grid span {
    display: block;
    margin-top: 6px;
    color: var(--muted)
}

.visual-stack {
    position: relative
}

.visual-stack img {
    height: 560px;
    width: 100%;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow)
}

.floating-panel {
    position: absolute;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18)
}

.floating-panel b {
    display: block;
    color: var(--azul);
    font-size: 1.2rem
}

.floating-panel span {
    color: var(--muted);
    font-weight: 700
}

.panel-one {
    left: -20px;
    top: 14%;
    animation: floatY 4s ease-in-out infinite
}

.panel-two {
    right: -18px;
    bottom: 14%;
    animation: floatY 4s ease-in-out .8s infinite
}

.process {
    background: var(--azul);
    color: #fff;
    overflow: hidden
}

.process::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(246, 190, 0, .18), transparent 28%), linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: auto, 52px 52px
}

.process .container {
    position: relative
}

.process h2 {
    color: #fff
}

.process p {
    color: rgba(255, 255, 255, .72)
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative
}

.step {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    padding: 26px;
    min-height: 245px;
    position: relative;
    overflow: hidden
}

.step::after {
    content: "";
    position: absolute;
    inset: auto -30% -45% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(246, 190, 0, .12)
}

.step span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--amarillo);
    color: var(--azul);
    font-weight: 900
}

.step h3 {
    font-size: 1.35rem;
    margin: 22px 0 10px
}

.solutions {
    background: #fff
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(12, 15, 33, .08);
    transition: .3s var(--ease)
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(12, 15, 33, .15)
}

.service-card img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    filter: saturate(.92)
}

.service-card div {
    padding: 22px
}

.service-card span {
    color: var(--amarillo);
    font-weight: 900
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--azul);
    margin: 8px 0
}

.service-card p {
    font-size: .98rem;
    margin: 0
}

.command {
    background: linear-gradient(180deg, var(--gris), #fff)
}

.command-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center
}

.command-board {
    background: var(--azul-2);
    color: #fff;
    border-radius: 34px;
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08)
}

.command-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(246, 190, 0, .16), transparent 30%)
}

.board-header,
.board-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center
}

.board-header {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.board-header b {
    color: #57e389;
    font-size: .82rem
}

.board-row {
    grid-template-columns: 150px 1fr auto;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.board-row span {
    color: rgba(255, 255, 255, .68);
    font-weight: 800
}

.board-row i {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amarillo), rgba(246, 190, 0, .08));
    position: relative;
    overflow: hidden
}

.board-row i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    animation: barScan 2.2s infinite
}

.radar {
    width: 245px;
    height: 245px;
    border-radius: 50%;
    border: 1px solid rgba(246, 190, 0, .38);
    margin: 30px auto 6px;
    position: relative;
    background: radial-gradient(circle, rgba(246, 190, 0, .13), transparent 60%)
}

.radar::before,
.radar::after {
    content: "";
    position: absolute;
    inset: 38px;
    border: 1px solid rgba(246, 190, 0, .22);
    border-radius: 50%
}

.radar::after {
    inset: 78px
}

.radar span {
    position: absolute;
    width: 50%;
    height: 2px;
    left: 50%;
    top: 50%;
    transform-origin: left;
    background: linear-gradient(90deg, var(--amarillo), transparent);
    animation: radar 3s linear infinite
}

.about {
    background: #fff
}

.reverse {
    grid-template-columns: .95fr 1.05fr
}

.about-box {
    background: linear-gradient(180deg, #fff, #fbfcff);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px
}

.metrics div {
    padding: 18px;
    border-radius: 20px;
    background: var(--gris);
    border: 1px solid var(--border)
}

.metrics strong {
    display: block;
    font-size: 2rem;
    color: var(--azul);
    line-height: 1
}

.metrics span {
    color: var(--muted);
    font-weight: 700
}

.values {
    background: var(--azul);
    color: #fff;
    border-radius: 32px;
    padding: 36px;
    position: relative;
    overflow: hidden
}

.values::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -85px;
    width: 230px;
    height: 230px;
    background: rgba(246, 190, 0, .16);
    border-radius: 50%
}

.values h3 {
    font-size: 2.2rem;
    margin: 0 0 18px
}

.values ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none
}

.values li {
    padding: 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    font-weight: 800
}

.cta-band {
    padding: 76px 0;
    background: linear-gradient(135deg, var(--amarillo), #ffdc67);
    color: var(--azul);
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 26, 52, .08) 1px, transparent 1px);
    background-size: 78px 78px
}

.cta-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.cta-band .eyebrow {
    color: #5d4600
}

.cta-band h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1;
    max-width: 820px;
    margin: 0
}

.cta-band .btn-primary {
    background: var(--azul);
    color: #fff
}

.contact {
    background: var(--gris)
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: start
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 28px
}

.contact-cards a {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 14px 36px rgba(15, 18, 34, .06);
    transition: .25s
}

.contact-cards a:hover {
    transform: translateX(6px);
    border-color: rgba(246, 190, 0, .5)
}

.contact-cards strong {
    display: block;
    color: var(--azul)
}

.contact-cards span {
    color: var(--muted)
}

.contact-form {
    background: #fff;
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

.contact-form label {
    display: block;
    font-weight: 900;
    color: var(--azul);
    margin-bottom: 14px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid #dfe3ec;
    background: #fafbfe;
    border-radius: 15px;
    padding: 14px 15px;
    font: inherit;
    outline: none
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--amarillo);
    box-shadow: 0 0 0 4px rgba(246, 190, 0, .14)
}

.contact-form button {
    width: 100%;
    border: 0
}

.form-note {
    font-size: .9rem;
    color: var(--muted);
    margin: 14px 0 0
}

.site-footer {
    background: #111225;
    color: #fff;
    padding: 56px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px
}

.footer-grid p {
    color: rgba(255, 255, 255, .68);
    max-width: 400px
}

.footer-grid strong {
    display: block;
    color: var(--amarillo);
    margin-bottom: 12px
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, .72);
    margin: 8px 0
}

.footer-grid a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 30px;
    padding-top: 18px;
    color: rgba(255, 255, 255, .56);
    font-size: .92rem
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;

    width: 68px;
    height: 68px;

    border-radius: 50%;
    display: grid;
    place-items: center;

    background: #25d366;
    color: #fff;

    box-shadow:
        0 16px 42px rgba(0, 0, 0, .22),
        0 0 0 12px rgba(37, 211, 102, .12);

    animation: pulse 2.4s infinite;
}

.whatsapp i {
    font-size: 38px;
    line-height: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal:nth-child(2) {
    transition-delay: .06s
}

.reveal:nth-child(3) {
    transition-delay: .12s
}

.reveal:nth-child(4) {
    transition-delay: .18s
}

@keyframes slowZoom {
    to {
        transform: scale(1.12)
    }
}

@keyframes gridDrift {
    to {
        background-position: 72px 72px
    }
}

@keyframes scanY {

    0%,
    100% {
        top: 0
    }

    50% {
        top: 100%
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes floatY {
    50% {
        transform: translateY(-18px)
    }
}

@keyframes barScan {
    to {
        transform: translateX(100%)
    }
}

@keyframes radar {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 16px 42px rgba(0, 0, 0, .22), 0 0 0 0 rgba(37, 211, 102, .36)
    }

    50% {
        box-shadow: 0 16px 42px rgba(0, 0, 0, .22), 0 0 0 16px rgba(37, 211, 102, 0)
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

@media (max-width:1080px) {

    .card-grid,
    .timeline {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-grid,
    .split,
    .command-grid,
    .contact-grid,
    .reverse {
        grid-template-columns: 1fr
    }

    .hero-grid {
        gap: 28px
    }

    .ops-card {
        max-width: 610px
    }

    .visual-stack img {
        height: 440px
    }
}

@media (max-width:900px) {
    .nav-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: rgba(17, 18, 37, .98);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 20px
    }

    .main-nav.is-open {
        display: flex
    }

    .main-nav a {
        padding: 14px
    }

    .header-wrap {
        height: 78px
    }

    .hero-grid {
        padding-top: 124px
    }

    .hero h1 {
        font-size: clamp(3rem, 12vw, 5rem)
    }
}

@media (max-width:620px) {
    .container {
        width: min(100% - 24px, var(--container))
    }

    .hero h1 {
        font-size: 2.8rem
    }

    .lead {
        font-size: 1.05rem
    }

    .section {
        padding: 78px 0
    }

    .card-grid,
    .timeline,
    .benefit-grid,
    .values ul,
    .metrics,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-actions .btn {
        width: 100%
    }

    .ops-screen img {
        height: 245px
    }

    .trust-strip {
        display: grid;
        grid-template-columns: auto 1fr
    }

    .trust-strip i {
        display: none
    }

    .board-row {
        grid-template-columns: 1fr
    }

    .radar {
        width: 190px;
        height: 190px
    }

    .cta-wrap {
        align-items: flex-start;
        flex-direction: column
    }

    .floating-panel {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 12px
    }

    .whatsapp {
        width: 54px;
        height: 54px
    }
}

.nav-cta-work {
    background: var(--sef-yellow);
    color: var(--sef-navy) !important;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(246, 190, 0, 0.25);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-cta-work:hover {
    transform: translateY(-2px);
    background: #ffd45a;
    box-shadow: 0 18px 40px rgba(246, 190, 0, 0.38);
}



/* =========================================================
   TRABAJE CON NOSOTROS
   Compatible con variables actuales: --azul / --amarillo
   ========================================================= */

.work-page {
    background: #fff;
}


.work-hero {
    position: relative;
    padding: 132px 0 72px;
    background:
        radial-gradient(circle at 82% 28%, rgba(30, 26, 52, .16), transparent 30%),
        linear-gradient(135deg, #f6be00 0%, #ffd75d 58%, #fff3bf 100%);
    overflow: hidden;
}

.work-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(30, 26, 52, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 26, 52, .045) 1px, transparent 1px);
    background-size: 82px 82px;
    opacity: .45;
    pointer-events: none;
}

.work-hero::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -260px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 26, 52, .18), transparent 68%);
    pointer-events: none;
}

.work-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 64px;
    align-items: center;
}

.work-hero-content {
    max-width: 760px;
}

.work-hero-content h1 {
    max-width: 760px;
    margin: 16px 0 20px;
    color: var(--azul);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.work-hero-content p {
    max-width: 620px;
    margin: 0;
    color: rgba(30, 26, 52, .78);
    font-size: 1.05rem;
    line-height: 1.72;
}

.work-hero .hero-actions {
    margin-top: 30px;
}

.work-hero-panel {
    display: flex;
    justify-content: flex-end;
}

.work-card-highlight {
    width: 100%;
    max-width: 330px;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(30, 26, 52, .98), rgba(17, 18, 37, .98));
    color: #fff;
    box-shadow: 0 28px 70px rgba(30, 26, 52, .28);
    border: 1px solid rgba(255, 255, 255, .12);
}

.work-card-highlight span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--amarillo);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.work-card-highlight h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.work-card-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.75;
}



.eyebrow.dark {
    color: var(--azul);
}

.eyebrow.dark span {
    background: var(--azul);
}

.work-hero-panel {
    display: flex;
    justify-content: flex-end;
}

.work-card-highlight {
    width: min(100%, 330px);
    padding: 34px;
    border-radius: 32px;
    background: var(--azul);
    color: #fff;
    box-shadow: 0 30px 70px rgba(30, 26, 52, .36);
}

.work-card-highlight span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--amarillo);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}

.work-card-highlight h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.work-card-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.7;
}

.btn-dark {
    background: var(--azul);
    color: #fff;
    border: 1px solid var(--azul);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(30, 26, 52, .25);
}

.btn-outline-dark {
    background: transparent;
    color: var(--azul);
    border: 1px solid rgba(30, 26, 52, .35);
}

.btn-outline-dark:hover {
    background: var(--azul);
    color: #fff;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.work-position-card {
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(12, 15, 33, .08);
    transition: .28s var(--ease);
}

.work-position-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 190, 0, .45);
    box-shadow: 0 28px 70px rgba(12, 15, 33, .13);
}

.work-position-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--amarillo);
    font-weight: 900;
}

.work-position-card h3 {
    margin: 0 0 12px;
    color: var(--azul);
    font-size: 1.35rem;
}

.work-position-card p {
    margin: 0;
    font-size: .98rem;
}

.work-benefits {
    background: linear-gradient(180deg, var(--gris), #fff);
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-item {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 48px rgba(12, 15, 33, .07);
    text-align: center;
}

.benefit-item strong {
    display: block;
    color: var(--azul);
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 8px;
}

.benefit-item span {
    color: var(--muted);
    font-weight: 800;
}

.application-section {
    background: #fff;
}

.application-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.application-copy h2 {
    color: var(--azul);
}

.requirement-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.requirement-list li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border-radius: 18px;
    background: var(--gris);
    border: 1px solid var(--border);
    color: var(--azul);
    font-weight: 800;
}

.requirement-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--amarillo);
}

.application-form {
    padding: 30px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: var(--azul);
    font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid #dfe3ec;
    background: #fafbfe;
    border-radius: 16px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--amarillo);
    box-shadow: 0 0 0 4px rgba(246, 190, 0, .14);
}

.full-btn {
    width: 100%;
    border: 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, .65);
}

/* Responsive */
@media (max-width: 1080px) {

    .application-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }


    .work-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .work-hero-panel {
        justify-content: flex-start;
    }

    .work-card-highlight {
        max-width: 430px;
    }
}

@media (max-width: 620px) {

    .work-grid,
    .benefits-row {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 22px;
    }

    .work-card-highlight {
        width: 100%;
    }



    .work-hero {
        padding: 118px 0 64px;
    }

    .work-hero-content h1 {
        font-size: 2.55rem;
        line-height: 1;
    }

    .work-hero-content p {
        font-size: 1rem;
    }

    .work-hero .hero-actions {
        display: grid;
    }

    .work-hero .hero-actions .btn {
        width: 100%;
    }

    .work-card-highlight {
        max-width: 100%;
    }
}

/* =========================================================
   SELECTS PERSONALIZADOS - FORMULARIO POSTULACIÓN
   ========================================================= */

.application-form .form-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    min-height: 54px;
    padding: 14px 48px 14px 16px;

    border: 1px solid #dfe3ec;
    border-radius: 16px;

    background-color: #fafbfe;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--azul) 50%),
        linear-gradient(135deg, var(--azul) 50%, transparent 50%);
    background-position:
        calc(100% - 23px) 50%,
        calc(100% - 17px) 50%;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;

    color: var(--azul);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.application-form .form-row select:hover {
    border-color: rgba(246, 190, 0, .75);
    background-color: #fff;
}

.application-form .form-row select:focus {
    outline: none;
    border-color: var(--amarillo);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(246, 190, 0, .16);
}

.application-form .form-row select option {
    color: var(--azul);
    background: #fff;
    font-weight: 600;
}

.application-form .form-row select:invalid {
    color: rgba(30, 26, 52, .55);
}

/* =========================================================
   CUSTOM SELECT
   ========================================================= */

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    min-height: 56px;
    padding: 14px 48px 14px 16px;
    border: 1px solid #dfe3ec;
    border-radius: 16px;
    background: #fafbfe;
    color: var(--azul);
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition: .25s var(--ease);
}

.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger {
    background: #fff;
    border-color: var(--amarillo);
    box-shadow: 0 0 0 4px rgba(246, 190, 0, .14);
}

.custom-select-trigger i {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--azul);
    border-bottom: 2px solid var(--azul);
    transform: translateY(-65%) rotate(45deg);
    transition: .25s var(--ease);
}

.custom-select.is-open .custom-select-trigger i {
    transform: translateY(-35%) rotate(225deg);
}

.custom-options {
    position: absolute;
    z-index: 50;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 8px;
    border: 1px solid rgba(30, 26, 52, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(12, 15, 33, .16);
}

.custom-select.is-open .custom-options {
    display: grid;
    gap: 4px;
}

.custom-options button {
    width: 100%;
    padding: 13px 14px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--azul);
    font: inherit;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
    transition: .18s ease;
}

.custom-options button:hover,
.custom-options button.is-selected {
    background: rgba(246, 190, 0, .18);
    color: var(--azul);
}

.custom-options button.is-selected {
    font-weight: 900;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: #9aa3b2;
    opacity: 1;
    font-weight: 500;
}

.application-form input:focus::placeholder,
.application-form textarea:focus::placeholder {
    opacity: .6;
}

.form-message {
    margin: 16px 0;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
    line-height: 1.5;
}

.form-message.success {
    background: rgba(39, 174, 96, .12);
    color: #146c43;
    border: 1px solid rgba(39, 174, 96, .25);
}

.form-message.error {
    background: rgba(220, 53, 69, .12);
    color: #842029;
    border: 1px solid rgba(220, 53, 69, .25);
}

.recaptcha-row {
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 16px;
    background: #fafbfe;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.g-recaptcha {
    margin-bottom: 12px;
}

.recaptcha-row .g-recaptcha {
    display: inline-block;
}