/* ============================================================
   GoLatam · Landing Styles
   Paleta inspirada en GoLatam (azul Brickell + dorado) y
   modernizada con glassmorphism, gradientes y micro-animaciones.
   ============================================================ */

:root {
    /* Paleta corporativa GoLatam — alineada a golatamllc.com y marca track */
    --color-navy-900: #152a45;
    --color-navy-800: #1e3a5f;
    --color-navy-700: #2a4a73;
    --color-navy-600: #3d5f8a;

    --color-accent: #f0b429;
    --color-accent-2: #d9a008;
    --color-wa: #25d366;
    --color-brand-grey: #5c6b7a;
    --color-cyan: #3b82a8;
    --color-emerald: #059669;

    --color-bg: #eef1f5;
    --color-bg-soft: #f4f6f9;
    --color-surface: #ffffff;
    --color-border: #dde3ea;

    --color-text: #1e293b;
    --color-text-soft: #5c6b7a;
    --color-text-muted: #94a3b8;

    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2a4a73 100%);
    --gradient-gold: linear-gradient(135deg, #d9a008 0%, #f0b429 100%);
    --gradient-text: none;
    --gradient-hero: linear-gradient(105deg, rgba(21, 42, 69, 0.94) 0%, rgba(30, 58, 95, 0.88) 55%, rgba(30, 58, 95, 0.82) 100%);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Sombras */
    --shadow-sm: 0 2px 6px rgba(10, 31, 68, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 31, 68, 0.10);
    --shadow-lg: 0 24px 60px rgba(10, 31, 68, 0.18);
    --shadow-xl: 0 32px 80px rgba(10, 31, 68, 0.25);

    /* Otros */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --container: 1200px;
    --header-h: 80px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Utilidades ===== */
.text-gradient {
    color: var(--color-accent);
}

/* ===== Botones ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease),
                background .25s var(--ease), color .25s var(--ease),
                border-color .25s var(--ease);
    white-space: nowrap;
    user-select: none;
}
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--color-accent);
    color: var(--color-navy-900);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(240, 180, 41, 0.35);
}
.btn--primary:hover {
    background: var(--color-accent-2);
    color: var(--color-navy-900);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(240, 180, 41, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--color-navy-800);
    box-shadow: var(--shadow-md);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 0 rgba(30, 58, 95, 0.04);
    transition: box-shadow .25s var(--ease);
}
.navbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}
.navbar.is-scrolled {
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__brand-logo {
    display: block;
    height: 38px;
    width: auto;
    max-width: min(180px, 48vw);
    object-fit: contain;
}

.footer__brand-logo {
    display: block;
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
}

.navbar__nav { display: flex; align-items: center; gap: 26px; }
.navbar__nav a {
    color: var(--color-navy-800);
    font-size: 0.93rem;
    font-weight: 500;
    position: relative;
    padding: 6px 2px;
    transition: color .2s var(--ease);
}
.navbar__nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}
.navbar__nav a:hover { color: var(--color-accent); }
.navbar__nav a:hover::after { transform: scaleX(1); }
.navbar__nav a::after { background: var(--color-accent); }

.navbar__cta { padding: 10px 18px; font-size: 0.88rem; }

.navbar__burger {
    display: none;
    background: transparent;
    border: 0;
    width: 40px; height: 40px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.navbar__burger span {
    display: block; width: 22px; height: 2px;
    background: var(--color-navy-800); border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.navbar__cta-mobile { display: none; }

/* Menú móvil */
@media (max-width: 960px) {
    :root { --header-h: 72px; }
    .navbar__inner {
        gap: 10px;
        padding: 0 4px;
    }
    .navbar__brand {
        flex: 1;
        min-width: 0;
    }
    .navbar__brand-logo {
        max-height: 32px;
        max-width: 130px;
    }
    .navbar__nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        z-index: 1100;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        background: #fff;
        transform: translateY(-120%);
        transition: transform .3s var(--ease);
        gap: 2px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 12px 32px rgba(30, 58, 95, 0.12);
        max-height: calc(100dvh - var(--header-h));
        overflow-y: auto;
    }
    .navbar__nav.is-open { transform: translateY(0); }
    .navbar__nav a {
        padding: 14px 10px;
        font-size: 1rem;
        border-radius: 8px;
        color: var(--color-navy-800);
    }
    .navbar__nav a:hover { background: var(--color-bg-soft); }
    .navbar__nav-wa { color: var(--color-wa) !important; font-weight: 600; }
    .navbar__cta-mobile {
        display: flex !important;
        justify-content: center;
        margin-top: 12px;
        width: 100%;
    }
    .navbar__burger {
        display: inline-flex;
        flex-shrink: 0;
        z-index: 1101;
    }
    .navbar__cta { display: none; }
    body.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 80px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg-image {
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(30, 58, 95, 0.88) 0%, rgba(30, 58, 95, 0.75) 100%),
        url('/assets/img/hero-golatam-fleet.webp') center/cover no-repeat,
        url('/assets/img/hero-tracking.webp') center/cover no-repeat;
    opacity: 1;
    filter: none;
}
.hero__bg-routes,
.hero__bg-scan,
.hero__blob { display: none !important; }

.hero__bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(21, 42, 69, 0.4) 0%, rgba(30, 58, 95, 0.65) 100%);
}

.hero__bg-grid { display: none; }

.hero__content { position: relative; max-width: 900px; }
.hero__content [data-reveal] {
    opacity: 1;
    transform: none;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}
.hero__pulse {
    width: 8px; height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 22px 0 18px;
}
.hero__subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin: 0 0 36px;
}
.hero__subtitle strong { color: #fff; font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 640px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    color: var(--color-accent);
    line-height: 1;
}
.hero__stat span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}
@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 28px) 0 56px;
    }
    .hero__title { font-size: 1.85rem; line-height: 1.15; }
    .hero__subtitle { font-size: 1rem; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; margin-bottom: 32px; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__stats { grid-template-columns: 1fr; gap: 14px; }
    .container { padding: 0 16px; }
    .contact__grid { grid-template-columns: 1fr; gap: 28px; }
    .contact__channels { flex-direction: column; }
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex; justify-content: center;
    padding-top: 6px;
}
.hero__scroll span {
    width: 4px; height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   SECTIONS (genéricas)
   ============================================================ */
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.section--about      { background: var(--color-surface); }
.section--mission    { background: var(--color-bg); }
.section--services   { background: var(--color-surface); }
.section--partners   { background: var(--color-bg); }
.section--contact    { background: var(--color-surface); }

.section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent-2);
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 999px;
    margin: 0 0 18px;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-navy-800);
    margin: 0 0 20px;
}
.section__lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-soft);
    max-width: 720px;
    margin: 0 0 30px;
}
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__header { max-width: 820px; margin: 0 auto 60px; }
.section__header--center { text-align: center; }
.section__header--center .section__eyebrow { display: inline-block; }

.section__list { display: grid; gap: 14px; margin-top: 6px; }
.section__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-soft);
    font-size: 1rem;
}
.section__list svg {
    flex: 0 0 auto;
    color: var(--color-emerald);
    margin-top: 4px;
}

.section__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 880px) {
    .section__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Tarjeta media (about) */
.media-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
    isolation: isolate;
}
.media-card::before {
    content: '';
    position: absolute; inset: 0;
    background: url('/assets/img/hero-bg.webp') center/cover no-repeat;
    opacity: 0.35;
    z-index: -2;
}
.media-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 46, 0.2) 0%, rgba(6, 18, 46, 0.85) 100%);
    z-index: -1;
}
.media-card__badge {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: auto;
}
.media-card__body h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.media-card__body p { margin: 0; color: rgba(255, 255, 255, 0.82); }

/* ============================================================
   MISSION
   ============================================================ */
.mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .mission__grid { grid-template-columns: 1fr; } }

.mission__card {
    position: relative;
    background: var(--color-surface);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    overflow: hidden;
    isolation: isolate;
}
.mission__card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.mission__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.3);
}
.mission__card:hover::before { transform: scaleX(1); }

.mission__icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.05), rgba(251, 191, 36, 0.1));
    color: var(--color-navy-700);
    margin-bottom: 18px;
}
.mission__card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0 0 10px;
    color: var(--color-navy-800);
}
.mission__card p { color: var(--color-text-soft); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services__grid { grid-template-columns: 1fr; } }

.service {
    position: relative;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    overflow: hidden;
    isolation: isolate;
}
.service::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--c1, #fbbf24), var(--c2, #f59e0b));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}
.service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service:hover::after { opacity: 1; }

.service__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c1, #3b82f6), var(--c2, #06b6d4));
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(10, 31, 68, 0.12);
}
.service h3 {
    font-size: 1.15rem;
    color: var(--color-navy-800);
    margin: 0 0 8px;
    font-weight: 700;
}
.service p { color: var(--color-text-soft); margin: 0; font-size: 0.95rem; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 880px) { .partners__strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .partners__strip { grid-template-columns: repeat(2, 1fr); } }

.partner-logo {
    text-align: center;
    padding: 18px 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.partner-logo:hover {
    color: var(--color-navy-800);
    background: rgba(10, 31, 68, 0.04);
    transform: translateY(-2px);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--gradient-primary);
    color: #fff;
    padding: clamp(60px, 9vw, 100px) 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(251, 191, 36, 0.25), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(34, 211, 238, 0.18), transparent 45%);
    z-index: -1;
}
.cta-banner__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 40px;
}
@media (max-width: 820px) { .cta-banner__inner { grid-template-columns: 1fr; text-align: center; } }
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 0 10px;
    line-height: 1.15;
}
.cta-banner p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
@media (max-width: 820px) { .cta-banner__actions { justify-content: center; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }

.contact__channels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.contact__wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--color-wa);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: filter .2s ease;
}
.contact__wa-btn:hover { filter: brightness(1.06); }
.contact__phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 2px solid var(--color-navy-800);
    color: var(--color-navy-800);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background .2s ease;
}
.contact__phone-btn:hover { background: var(--color-bg-soft); }
.contact__form-hint {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: -8px 0 16px;
}
.contact__list { display: grid; gap: 22px; margin-top: 8px; }
.contact__list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact__list li div { display: flex; flex-direction: column; gap: 4px; }
.contact__list strong { color: var(--color-navy-800); }
.contact__list span { color: var(--color-text-soft); }
.contact__list a { color: var(--color-text-soft); transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--color-accent-2); }

.contact__icon {
    flex: 0 0 auto;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.contact__form {
    background: var(--color-surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}
.contact__form h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0 0 20px;
    color: var(--color-navy-800);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.contact__form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}
.contact__form input,
.contact__form textarea {
    font: inherit;
    color: var(--color-text);
    background: var(--color-bg-soft);
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
    resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--color-accent-2);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}
.form-note {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: var(--color-emerald);
    min-height: 1.2em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-navy-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}
@media (max-width: 880px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
    .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand p { margin: 0; max-width: 340px; }
.footer__col h4 {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.footer__col a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    padding: 4px 0;
    transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--color-accent); }
.footer__col p { margin: 0; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
    gap: 12px;
}

.wa-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-wa);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
@media (max-width: 600px) {
    .wa-fab { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

/* FAB consola deshabilitado */
.fab {
    display: none !important;
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--gradient-gold);
    color: var(--color-navy-900);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 14px 36px rgba(251, 191, 36, 0.5), 0 0 0 0 rgba(251, 191, 36, 0.6);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    animation: fabPulse 2.6s infinite;
}
.fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 44px rgba(251, 191, 36, 0.55);
    animation: none;
}
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 14px 36px rgba(251, 191, 36, 0.5), 0 0 0 0 rgba(251, 191, 36, 0.55); }
    50%      { box-shadow: 0 14px 36px rgba(251, 191, 36, 0.5), 0 0 0 16px rgba(251, 191, 36, 0); }
}
@media (max-width: 600px) {
    .fab span { display: none; }
    .fab { padding: 14px; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
