/* ─────────────────────────────────────────────
   EsLeal — landing.css   v2.0 (design handoff)
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    /* Paleta principal */
    --coral:      #E8623A;
    --coral-hi:   #F2855E;
    --coral-dark: #C04A22;
    --cafe-dark:  #3B1F0C;
    --cafe-2:     #5C341A;
    --amber:      #F4A628;
    --amber-hi:   #FFC15C;
    --cream:      #FDF5EC;
    --cream-2:    #F6E8D3;
    --texto:      #2D1A0E;
    --gris:       #7A5C46;
    --gris-hi:    #B79A82;
    /* Border radius */
    --r-sm:   6px;
    --r-md:   12px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-pill: 9999px;
    /* Aliases (compatibilidad) */
    --azul:       #E8623A;
    --azul-dark:  #3B1F0C;
    --azul-light: #FEF0E6;
    --acento:     #F4A628;
}

* { box-sizing: border-box; }

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    color: var(--texto);
    margin: 0;
    background: #fff;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.l-nav {
    background: var(--cafe-dark);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.l-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.l-nav-logo img { height: 36px; display: block; }
.l-nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.l-nav-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    padding: .4rem .85rem;
    border-radius: var(--r-md);
    transition: color .18s;
}
.l-nav-links a:hover { color: #fff; }
.l-nav-cta {
    background: var(--coral);
    color: #fff !important;
    padding: .45rem 1.1rem !important;
    border-radius: var(--r-md) !important;
    box-shadow: 0 4px 0 var(--cafe-2);
    transition: transform .12s ease-out, box-shadow .12s ease-out !important;
}
.l-nav-cta:hover {
    transform: translateY(2px) !important;
    box-shadow: 0 2px 0 var(--cafe-2) !important;
    color: #fff !important;
}
/* hamburger */
.l-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    flex-direction: column;
    gap: 5px;
}
.l-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .2s;
}
@media (max-width: 767px) {
    .l-hamburger { display: flex; }
    .l-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--cafe-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem 1.5rem;
        gap: .2rem;
        border-top: 1px solid rgba(255,255,255,.1);
    }
    .l-nav-links.open { display: flex; }
    .l-nav-links a { width: 100%; font-size: 1rem; }
}

/* ══════════════════════════════════════════════
   HERO — Drama oscuro
══════════════════════════════════════════════ */
.l-hero {
    background: linear-gradient(145deg, var(--cafe-dark) 0%, var(--cafe-2) 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    color: #fff;
}
/* halos decorativos */
.l-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, rgba(244,166,40,.28), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.l-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 60%, rgba(232,98,58,.22), transparent 60%);
    filter: blur(50px);
    pointer-events: none;
}
.l-hero .container { position: relative; z-index: 2; }

/* grid hero */
.l-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 767px) {
    .l-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .l-hero-phones { order: -1; }
}

/* copy */
.l-hero-copy {}
.l-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(244,166,40,.18);
    border: 1px solid rgba(244,166,40,.35);
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.4rem;
}
.l-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
    margin-bottom: 1.2rem;
    color: #fff;
}
.l-hero h1 em {
    font-style: normal;
    color: var(--amber);
}
.l-hero-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,.72);
    margin-bottom: 2rem;
    max-width: 460px;
}
@media (max-width: 767px) {
    .l-hero-sub { max-width: 100%; }
}
.l-hero-sub strong { color: #fff; }

/* CTAs hero */
.l-ctas {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
@media (max-width: 767px) { .l-ctas { justify-content: center; } }

.btn-cta-amber {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--amber);
    color: var(--cafe-dark);
    font-weight: 800;
    font-size: 1rem;
    padding: .85rem 1.8rem;
    border-radius: var(--r-md);
    text-decoration: none;
    box-shadow: 0 6px 0 #1A0F08, 0 18px 30px -12px rgba(244,166,40,.5);
    transition: transform .12s ease-out, box-shadow .12s ease-out;
}
.btn-cta-amber:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #1A0F08, 0 14px 24px -12px rgba(244,166,40,.5);
    color: var(--cafe-dark);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .85rem 1.8rem;
    border-radius: var(--r-md);
    border: 2px solid rgba(255,255,255,.4);
    text-decoration: none;
    transition: border-color .18s, background .18s;
}
.btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* trust strip */
.l-trust {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}
@media (max-width: 767px) { .l-trust { justify-content: center; } }
.l-trust-avatars {
    display: flex;
}
.l-trust-avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--cafe-dark);
    background: var(--coral-hi);
    font-size: .65rem;
    font-weight: 800;
    color: #fff;
    margin-left: -8px;
}
.l-trust-avatars span:first-child { margin-left: 0; }
.l-trust-text { font-size: .82rem; color: rgba(255,255,255,.65); }
.l-trust-text strong { color: var(--amber); }

/* phones side */
.l-hero-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -1rem;
    position: relative;
}
.l-phone-mockup {
    width: 200px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 50px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.1);
    background: var(--cream);
    flex-shrink: 0;
}
.l-phone-mockup:first-child {
    transform: rotate(-5deg) translateY(16px);
    z-index: 1;
}
.l-phone-mockup:last-child {
    transform: rotate(5deg) translateY(0px);
    z-index: 2;
}
.l-phone-screen {
    padding: 16px 12px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* callout flotante */
.l-callout {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream);
    color: var(--cafe-dark);
    font-size: .8rem;
    font-weight: 800;
    padding: .55rem 1.2rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    z-index: 10;
}
/* mascote flotante */
.l-mascote {
    position: absolute;
    bottom: 60px;
    left: -30px;
    width: 90px;
    filter: drop-shadow(0 14px 24px rgba(0,0,0,.4)) drop-shadow(0 0 30px rgba(244,166,40,.45));
    animation: mascote-float 4s ease-in-out infinite;
}
@keyframes mascote-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@media (max-width: 767px) { .l-mascote { display: none; } }

/* ══════════════════════════════════════════════
   SECCIONES GENÉRICAS
══════════════════════════════════════════════ */
.l-section {
    padding: 80px 0;
}
.l-section-cream  { background: var(--cream); }
.l-section-cream2 { background: var(--cream-2); }
.l-section-dark   { background: var(--cafe-dark); color: #fff; position: relative; overflow: hidden; }
.l-section-dark::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, rgba(232,98,58,.22), transparent 60%);
    filter: blur(50px);
    pointer-events: none;
}
.l-section-dark::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 60%, rgba(244,166,40,.2), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.l-eyebrow-coral {
    display: inline-block;
    color: var(--coral);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.l-eyebrow-amber {
    display: inline-block;
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.l-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: .6rem;
}
.l-h2 em { font-style: normal; color: var(--coral); }
.l-h2 em.amber { color: var(--amber); }
.l-section-dark .l-h2 { color: #fff; }

.l-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gris);
    margin-bottom: 2.5rem;
}
.l-section-dark .l-sub { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════
   SECCIÓN PROBLEMA — stat cards
══════════════════════════════════════════════ */
.stat-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 32px 28px;
    box-shadow: 0 1px 0 rgba(59,31,12,.04), 0 14px 24px -16px rgba(59,31,12,.3);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    opacity: .12;
    filter: blur(30px);
}
.stat-card.coral::before { background: var(--coral); }
.stat-card.amber::before { background: var(--amber); }
.stat-card.verde::before { background: #4DAA7A; }

.stat-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: .9;
    letter-spacing: -3px;
    margin-bottom: .4rem;
}
.stat-card.coral .stat-num { color: var(--coral); }
.stat-card.amber .stat-num { color: var(--amber); }
.stat-card.verde .stat-num { color: #4DAA7A; }

.stat-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--texto);
    margin-bottom: .4rem;
}
.stat-body {
    font-size: .9rem;
    font-weight: 600;
    color: var(--gris);
    line-height: 1.5;
    margin: 0;
}

/* ══════════════════════════════════════════════
   SECCIÓN PARA QUIÉN — giro cards
══════════════════════════════════════════════ */
.giro-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 20px 16px;
    height: 100%;
    transition: transform .2s ease-out, box-shadow .2s ease-out;
    box-shadow: 0 1px 0 rgba(59,31,12,.04), 0 6px 16px -8px rgba(59,31,12,.2);
}
.giro-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 0 rgba(59,31,12,.05), 0 14px 28px -12px rgba(59,31,12,.25);
}
.giro-icon {
    width: 52px; height: 52px;
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: .75rem;
}
.giro-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--texto);
    margin-bottom: .2rem;
}
.giro-sub {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gris);
}
.l-giro-more {
    text-align: center;
    margin-top: 2.5rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--coral);
    text-decoration: none;
}
.l-giro-more:hover { text-decoration: underline; color: var(--coral-hi); }

/* ══════════════════════════════════════════════
   SECCIÓN CÓMO FUNCIONA — pasos
══════════════════════════════════════════════ */
.paso-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.6rem;
}
.paso-badge {
    min-width: 52px; height: 52px;
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    font-weight: 900;
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif;
}
.paso-badge.normal {
    background: #fff;
    color: var(--coral);
    box-shadow: 0 2px 0 var(--cafe-dark), 0 6px 16px -8px rgba(59,31,12,.3);
}
.paso-badge.destacado {
    background: var(--cafe-dark);
    color: #fff;
    box-shadow: 0 4px 0 #1A0F08, 0 12px 24px -8px rgba(59,31,12,.5);
}
.paso-content {}
.paso-content h5 {
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 0 .25rem;
    color: var(--texto);
}
.paso-content p {
    font-size: .9rem;
    color: var(--gris);
    margin: 0;
    line-height: 1.55;
}
.paso-item.destacado {
    background: rgba(232,98,58,.06);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    border: 1.5px solid rgba(232,98,58,.18);
}

/* phone mockup lateral */
.l-phone-side {
    position: relative;
    display: flex;
    justify-content: center;
}
.l-phone-frame {
    width: 230px;
    border-radius: 32px;
    background: var(--cream);
    box-shadow: 0 1px 0 rgba(59,31,12,.05), 0 30px 50px -30px rgba(59,31,12,.35);
    overflow: hidden;
    border: 8px solid var(--cafe-dark);
}
.l-phone-inner {
    padding: 14px 10px;
    min-height: 380px;
}
.l-phone-note {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream);
    color: var(--cafe-dark);
    font-size: .75rem;
    font-weight: 800;
    padding: .45rem 1rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
    box-shadow: 0 5px 0 var(--coral), 0 12px 24px -8px rgba(232,98,58,.35);
}

/* ══════════════════════════════════════════════
   SECCIÓN COMPARATIVA
══════════════════════════════════════════════ */
.comp-wrap {
    background: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(59,31,12,.04), 0 14px 40px -20px rgba(59,31,12,.25);
}
.comp-table {
    width: 100%;
    border-collapse: collapse;
}
.comp-table th {
    padding: 14px 20px;
    font-weight: 800;
    font-size: .85rem;
    text-align: center;
    background: #fff;
    border-bottom: 2px solid var(--cream-2);
}
.comp-table th:first-child { text-align: left; color: var(--gris); font-weight: 700; }
.comp-table th.th-carton { color: var(--gris); font-size: .82rem; }
.comp-table th.th-esleal {
    background: var(--cafe-dark);
    color: #fff;
    border-radius: 0;
}
.comp-table td {
    padding: 11px 20px;
    font-size: .88rem;
    border-bottom: 1px solid var(--cream-2);
    text-align: center;
    vertical-align: middle;
}
.comp-table td:first-child { text-align: left; font-weight: 600; color: var(--texto); }
.comp-table td.td-esleal { background: rgba(232,98,58,.05); font-weight: 700; color: var(--coral); }
.comp-table td.td-carton { color: var(--gris); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table .ico-check { color: var(--coral); }
.comp-table .ico-cross { color: var(--gris-hi); }

/* ══════════════════════════════════════════════
   SECCIÓN PRECIOS
══════════════════════════════════════════════ */
.precio-card {
    background: #fff;
    border-radius: 28px;
    padding: 44px;
    border: 2px solid var(--coral);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(59,31,12,.04), 0 30px 50px -30px rgba(59,31,12,.2);
}
.precio-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, rgba(244,166,40,.15), transparent 60%);
    filter: blur(30px);
    pointer-events: none;
}
.precio-badge-top {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--amber);
    color: var(--cafe-dark);
    font-size: .8rem;
    font-weight: 800;
    padding: .35rem .9rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.5rem;
}
.precio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 767px) {
    .precio-grid { grid-template-columns: 1fr; }
    .precio-card { padding: 28px 22px; }
}
.precio-alta {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gris);
    margin-bottom: .3rem;
}
.precio-alta-monto {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--cafe-dark);
    margin-bottom: .1rem;
}
.precio-mensual-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gris);
    margin-bottom: .5rem;
}
.precio-mensual-monto {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--coral);
    margin-bottom: .2rem;
}
.precio-mensual-sub {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gris);
}
.precio-features-title {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gris);
    margin-bottom: .75rem;
}
.precio-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.precio-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--texto);
    padding: .35rem 0;
    border-bottom: 1px solid var(--cream-2);
}
.precio-features li:last-child { border-bottom: none; }
.precio-features .chk {
    width: 18px; height: 18px;
    background: var(--coral);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: .65rem;
    color: #fff;
}
.btn-cta-coral {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    background: var(--coral);
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 1.05rem 2rem;
    border-radius: var(--r-md);
    text-decoration: none;
    box-shadow: 0 6px 0 #1A0F08, 0 18px 30px -12px rgba(232,98,58,.55);
    transition: transform .12s ease-out, box-shadow .12s ease-out;
    margin-bottom: 1rem;
}
.btn-cta-coral:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #1A0F08, 0 12px 24px -12px rgba(232,98,58,.5);
    color: #fff;
}
.precio-sublinks {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gris);
}
.precio-sublinks span { display: flex; align-items: center; gap: .3rem; }
.precio-sublinks .ok { color: var(--coral); font-size: .7rem; }

/* ══════════════════════════════════════════════
   SECCIÓN CIERRE (dark)
══════════════════════════════════════════════ */
.cierre-mascote {
    width: 110px;
    display: block;
    margin: 0 auto 1.5rem;
    transform: rotate(-8deg);
    filter: drop-shadow(0 14px 24px rgba(0,0,0,.5)) drop-shadow(0 0 30px rgba(244,166,40,.5));
}
.cierre-h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #fff;
    margin-bottom: .75rem;
}
.cierre-h2 em { font-style: normal; color: var(--amber); }
.cierre-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    max-width: 500px;
    margin: 0 auto 2rem;
}
.cierre-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: .85rem 1.8rem;
    border-radius: var(--r-md);
    text-decoration: none;
    box-shadow: 0 5px 0 #128C7E, 0 16px 28px -10px rgba(37,211,102,.4);
    transition: transform .12s ease-out, box-shadow .12s ease-out;
}
.btn-cta-wa:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #128C7E, 0 12px 22px -10px rgba(37,211,102,.4);
    color: #fff;
}
.cierre-sublink {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.l-footer {
    background: #16090A;
    color: rgba(255,255,255,.5);
    padding: 56px 0 32px;
}
.l-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 991px) {
    .l-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 575px) {
    .l-footer-grid { grid-template-columns: 1fr; }
}
.l-footer-logo { height: 32px; margin-bottom: 1rem; display: block; }
.l-footer-pitch {
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.l-footer-wa {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(37,211,102,.15);
    color: #25D366;
    font-size: .82rem;
    font-weight: 700;
    padding: .4rem .9rem;
    border-radius: var(--r-pill);
    text-decoration: none;
}
.l-footer-col-title {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .85rem;
}
.l-footer-links { list-style: none; padding: 0; margin: 0; }
.l-footer-links li { margin-bottom: .5rem; }
.l-footer-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: color .18s;
}
.l-footer-links a:hover { color: #fff; }
.l-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    flex-wrap: wrap;
    gap: .5rem;
}

/* ══════════════════════════════════════════════
   UTILIDADES
══════════════════════════════════════════════ */
.text-coral { color: var(--coral) !important; }
.text-amber { color: var(--amber) !important; }
.text-cafe  { color: var(--cafe-dark) !important; }

@media (max-width: 767px) {
    .l-section { padding: 60px 0; }
    .l-h2 { letter-spacing: -1px; }
}
