/* =========================================================================
   e-astur.css — matriz multivertical B2B
   Paleta verde matriz + naranja BT+ acento + secundario por vertical
   ========================================================================= */

:root {
    /* === Marca matriz === */
    --c-matriz:        #2D6A3F;   /* verde bosque asturiano */
    --c-matriz-dark:   #1B4F2A;
    --c-matriz-light:  #4A8C5C;
    --c-matriz-soft:   #E8F1EA;

    /* === Acento BT+ === */
    --c-acento:        #f58220;
    --c-acento-dark:   #d96d10;
    --c-acento-soft:   #FEEFE0;

    /* === Verticales === */
    --c-flotas:        #1E5AA8;   /* azul confianza B2B */
    --c-flotas-soft:   #E5EDF7;
    --c-trucks:        #3F4A52;   /* gris-acero industrial */
    --c-trucks-soft:   #E8EAEC;
    --c-publico:       #6B4F87;   /* morado institucional */
    --c-publico-soft:  #EFEAF3;
    --c-subv:          #C9A227;   /* dorado premium */
    --c-subv-soft:     #F8F1D9;

    /* === Neutros === */
    --c-text:          #1a2530;
    --c-text-soft:     #5a6878;
    --c-text-mute:     #8b97a3;
    --c-bg:            #ffffff;
    --c-bg-soft:       #f6f8f6;
    --c-bg-dark:       #0e1a1f;
    --c-border:        #e1e6e0;

    /* === Tipografía === */
    --ff-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    --ff-display: 'Inter', system-ui, sans-serif;

    /* === Layout === */
    --container: 1200px;
    --container-narrow: 920px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    /* === Sombras === */
    --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
    --shadow-md: 0 4px 14px rgba(15,23,42,.08);
    --shadow-lg: 0 18px 50px rgba(15,23,42,.18);

    /* === Transiciones === */
    --t-fast: 150ms ease;
    --t-base: 250ms cubic-bezier(.4,0,.2,1);
}

/* =========================================================================
   Reset + base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-base);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}
img, video { max-width: 100%; height: auto; display: block; }
svg { display: block; flex-shrink: 0; }
a { color: var(--c-matriz); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-matriz-dark); }
button { font: inherit; border: 0; cursor: pointer; background: transparent; color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-display); margin: 0 0 .6em; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
p  { margin: 0 0 1em; }

/* =========================================================================
   Utilidades
   ========================================================================= */
.ea-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.ea-container-narrow { max-width: var(--container-narrow); }
.ea-section { padding: clamp(60px, 8vw, 110px) 0; }
.ea-section-soft { background: var(--c-bg-soft); }
.ea-section-dark { background: var(--c-bg-dark); color: #e7eef0; }
.ea-section-dark h2, .ea-section-dark h3 { color: #fff; }

.ea-eyebrow {
    display: inline-block;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-matriz);
    margin-bottom: 14px;
}
.ea-section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.ea-section-head .ea-lead { font-size: 1.12rem; color: var(--c-text-soft); }

.ea-accent { color: var(--c-matriz); }

/* === Botones === */
.ea-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-fast);
}
.ea-btn:hover { transform: translateY(-1px); }
.ea-btn-primary { background: var(--c-matriz); color: #fff; box-shadow: var(--shadow-md); }
.ea-btn-primary:hover { background: var(--c-matriz-dark); color: #fff; box-shadow: var(--shadow-lg); }
.ea-btn-accent { background: var(--c-acento); color: #fff; box-shadow: var(--shadow-md); }
.ea-btn-accent:hover { background: var(--c-acento-dark); color: #fff; }
.ea-btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.ea-btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.ea-btn-outline { background: transparent; color: var(--c-matriz); border: 1.5px solid var(--c-matriz); }
.ea-btn-outline:hover { background: var(--c-matriz); color: #fff; }

/* =========================================================================
   Topbar (banner ecocharge para particulares)
   ========================================================================= */
.ea-topbar {
    background: linear-gradient(90deg, var(--c-matriz-dark) 0%, var(--c-matriz) 100%);
    color: #fff;
    font-size: .88rem;
    line-height: 1.4;
    position: sticky;
    top: 0;
    z-index: 60;
}
.ea-topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    flex-wrap: wrap;
}
.ea-topbar-inner span { color: rgba(255,255,255,.86); }
.ea-topbar-inner a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color var(--t-fast);
}
.ea-topbar-inner a:hover { color: #ffd084; }
@media (max-width: 600px) {
    .ea-topbar { font-size: .82rem; }
    .ea-topbar-inner { padding: 8px 16px; }
}
/* Si hay topbar, el header sticky se queda DEBAJO de la topbar */
.ea-topbar + .ea-header { top: 0; }

/* =========================================================================
   Header
   ========================================================================= */
.ea-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--c-border);
}
.ea-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--container);
    margin: 0 auto;
}
.ea-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--c-matriz);
    letter-spacing: -.02em;
}
.ea-logo-mark {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--c-matriz) 0%, var(--c-matriz-light) 100%);
    display: grid; place-items: center;
    color: #fff; font-weight: 800;
    font-size: .9rem;
    box-shadow: var(--shadow-sm);
}
.ea-logo small {
    font-weight: 500;
    font-size: .68rem;
    color: var(--c-text-mute);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-left: 2px;
}
.ea-nav { display: flex; align-items: center; gap: 8px; }
.ea-nav a {
    color: var(--c-text);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .96rem;
    transition: background var(--t-fast), color var(--t-fast);
}
.ea-nav a:hover { background: var(--c-matriz-soft); color: var(--c-matriz-dark); }
.ea-nav a.is-active { color: var(--c-matriz); background: var(--c-matriz-soft); }
.ea-nav-cta { margin-left: 12px; padding: 10px 18px !important; }

.ea-burger {
    display: none;
    width: 40px; height: 40px;
    border-radius: 8px;
    align-items: center; justify-content: center;
    color: var(--c-text);
}
.ea-burger:hover { background: var(--c-bg-soft); }

@media (max-width: 880px) {
    .ea-nav { display: none; }
    .ea-nav.is-open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff;
        padding: 12px 16px 18px;
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-md);
        align-items: stretch;
        gap: 4px;
    }
    .ea-nav.is-open a { padding: 12px 14px; border-radius: 10px; }
    .ea-burger { display: inline-flex; }
}

/* =========================================================================
   Hero (home)
   ========================================================================= */
.ea-hero {
    position: relative;
    min-height: clamp(560px, 80vh, 760px);
    display: flex; align-items: center;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #0e1a1f 0%, #143229 100%);
}
.ea-hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.ea-hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(5,15,12,.05) 0%, rgba(5,15,12,.20) 45%, rgba(5,15,12,.62) 100%),
        linear-gradient(90deg, rgba(5,15,12,.50) 0%, rgba(5,15,12,.18) 40%, transparent 65%);
    z-index: 1;
}
.ea-hero-inner {
    position: relative; z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 100px 24px 80px;
}
.ea-hero-inner .ea-eyebrow { color: #b6e1bd; }
.ea-hero h1 {
    color: #fff;
    max-width: 18ch;
    margin-bottom: 22px;
    text-shadow:
        0 2px 8px rgba(0,0,0,.75),
        0 1px 3px rgba(0,0,0,.95),
        0 0 24px rgba(0,0,0,.45);
}
.ea-hero h1 .ea-accent {
    color: #ffd084;
    text-shadow:
        0 2px 8px rgba(0,0,0,.65),
        0 1px 3px rgba(0,0,0,.85);
}
.ea-hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    max-width: 56ch;
    color: #fff;
    margin-bottom: 36px;
    text-shadow:
        0 1px 4px rgba(0,0,0,.85),
        0 1px 2px rgba(0,0,0,.95);
}
.ea-hero .ea-eyebrow {
    text-shadow: 0 1px 3px rgba(0,0,0,.85);
}
.ea-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === Hero genérico para páginas internas (verticales) === */
.ea-hero-internal {
    position: relative;
    padding: clamp(110px, 14vw, 170px) 0 clamp(70px, 9vw, 110px);
    color: #fff;
    overflow: hidden;
    background-color: var(--c-bg-dark);
    background-size: cover;
    background-position: center;
}
.ea-hero-internal::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--c-vertical, var(--c-matriz)) 0%, var(--c-vertical-dark, var(--c-matriz-dark)) 100%);
    opacity: .82;
    z-index: 0;
}
.ea-hero-internal::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,.18) 100%),
        radial-gradient(900px 480px at 75% 25%, rgba(255,255,255,.14), transparent 60%);
    z-index: 0;
}
.ea-hero-internal .ea-container { position: relative; z-index: 1; }
.ea-hero-internal .ea-eyebrow { color: rgba(255,255,255,.92); }
.ea-hero-internal h1 {
    color: #fff;
    max-width: 22ch;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.ea-hero-internal p {
    color: rgba(255,255,255,.92);
    max-width: 60ch;
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* === Imágenes de fondo por vertical === */
.ea-hero-internal--flotas      { background-image: url('/assets/img/flotas-corporativo.jpg'); }
.ea-hero-internal--trucks      { background-image: url('/assets/img/trucks-mercado.jpg'); }
.ea-hero-internal--publico     { background-image: url('/assets/img/publico-buses.jpg'); }
.ea-hero-internal--subvenciones { background-image: url('/assets/img/subvenciones-hospital.jpg'); }
.ea-hero-internal--integral    { background-image: url('/assets/img/integral-logistica.jpg'); }
.ea-hero-internal--contacto    { background-image: url('/assets/img/home-hotel.jpg'); }

/* =========================================================================
   Mapa de servicios — 4 cards verticales
   ========================================================================= */
.ea-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.ea-service-card {
    --card: var(--c-matriz);
    --card-soft: var(--c-matriz-soft);
    position: relative;
    display: flex; flex-direction: column;
    padding: 32px 28px 30px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    text-decoration: none;
    color: var(--c-text);
    overflow: hidden;
    isolation: isolate;
}
.ea-service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.ea-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--card);
    color: var(--c-text);
}
.ea-service-card:hover::before { transform: scaleX(1); }
.ea-service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--card-soft);
    color: var(--card);
    margin-bottom: 18px;
    transition: background var(--t-base), color var(--t-base);
}
.ea-service-icon svg { width: 28px; height: 28px; stroke-width: 1.8; }
.ea-service-card:hover .ea-service-icon { background: var(--card); color: #fff; }
.ea-service-card h3 { color: var(--c-text); margin-bottom: 10px; }
.ea-service-card p { color: var(--c-text-soft); font-size: .98rem; margin-bottom: 22px; flex: 1; }
.ea-service-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--card);
    font-weight: 600;
    font-size: .95rem;
    transition: gap var(--t-base);
}
.ea-service-card:hover .ea-service-link { gap: 14px; }

/* === Variantes por vertical === */
.ea-service-card--flotas { --card: var(--c-flotas); --card-soft: var(--c-flotas-soft); }
.ea-service-card--trucks { --card: var(--c-trucks); --card-soft: var(--c-trucks-soft); }
.ea-service-card--publico { --card: var(--c-publico); --card-soft: var(--c-publico-soft); }
.ea-service-card--subv { --card: var(--c-subv); --card-soft: var(--c-subv-soft); }

/* =========================================================================
   Bloques genéricos: pillars, KPIs, valores
   ========================================================================= */
.ea-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.ea-pillar {
    padding: 26px 24px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    text-align: left;
}
.ea-pillar-num {
    display: inline-block;
    width: 38px; height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 10px;
    background: var(--c-matriz-soft);
    color: var(--c-matriz);
    font-weight: 800;
    margin-bottom: 14px;
    font-size: 1.05rem;
}
.ea-pillar h3 { font-size: 1.1rem; margin-bottom: 6px; }
.ea-pillar p { color: var(--c-text-soft); font-size: .96rem; margin: 0; }

/* === KPIs === */
.ea-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}
.ea-kpi {
    padding: 28px 18px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
}
.ea-kpi-num {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--c-matriz);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}
.ea-kpi-label { color: var(--c-text-soft); font-size: .94rem; }

/* =========================================================================
   CTA banda
   ========================================================================= */
.ea-cta-band {
    background: linear-gradient(135deg, var(--c-matriz) 0%, var(--c-matriz-dark) 100%);
    color: #fff;
    text-align: center;
    padding: clamp(60px, 8vw, 90px) 0;
}
.ea-cta-band h2 { color: #fff; max-width: 22ch; margin: 0 auto 14px; }
.ea-cta-band p { color: rgba(255,255,255,.88); max-width: 56ch; margin: 0 auto 32px; font-size: 1.08rem; }
.ea-cta-band .ea-btn-accent { box-shadow: 0 14px 30px rgba(245,130,32,.35); }

/* =========================================================================
   Próximamente (placeholder verticales)
   ========================================================================= */
.ea-soon {
    text-align: center;
    padding: clamp(50px, 7vw, 90px) 0;
    background: #fff;
    border: 1px dashed var(--c-border);
    border-radius: var(--radius-lg);
}
.ea-soon-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--c-bg-soft);
    color: var(--c-text-soft);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.ea-soon h2 { margin-bottom: 14px; }
.ea-soon p { color: var(--c-text-soft); max-width: 50ch; margin: 0 auto 28px; }

/* =========================================================================
   Servicio integral (página B2B + obra civil)
   ========================================================================= */
.ea-statement {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.ea-statement h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 18px;
}
.ea-statement p {
    font-size: 1.15rem;
    color: var(--c-text-soft);
    line-height: 1.7;
}
.ea-statement strong {
    color: var(--c-matriz-dark);
    font-weight: 700;
}

/* === Fases (qué aportamos) === */
.ea-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.ea-phase {
    padding: 28px 26px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.ea-phase:hover {
    border-color: var(--c-matriz);
    box-shadow: var(--shadow-md);
}
.ea-phase-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: var(--c-matriz-soft);
    color: var(--c-matriz);
    margin-bottom: 16px;
}
.ea-phase-icon svg { width: 26px; height: 26px; }
.ea-phase h3 { font-size: 1.1rem; margin-bottom: 8px; }
.ea-phase p { color: var(--c-text-soft); font-size: .96rem; margin: 0; }

/* === Pasos numerados (cómo trabajamos) === */
.ea-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    counter-reset: step;
}
.ea-step {
    position: relative;
    padding: 28px 22px 22px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
}
.ea-step-num {
    position: absolute;
    top: -18px;
    left: 22px;
    width: 38px; height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 999px;
    background: var(--c-matriz);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}
.ea-step-final .ea-step-num { background: var(--c-acento); }
.ea-step h3 { font-size: 1.05rem; margin: 8px 0 6px; }
.ea-step p { font-size: .92rem; color: var(--c-text-soft); margin: 0; }

/* === Card de credibilidad (cierre) === */
.ea-trust-card {
    background: linear-gradient(135deg, var(--c-matriz-dark) 0%, var(--c-matriz) 100%);
    color: #fff;
    padding: 50px 44px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.ea-trust-card h2 { color: #fff; margin-bottom: 18px; }
.ea-trust-card p { color: rgba(255,255,255,.88); max-width: 60ch; margin: 0 auto 28px; }
.ea-trust-list {
    list-style: none; padding: 0; margin: 0 0 32px;
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}
.ea-trust-list li {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    background: rgba(255,255,255,.10);
    border-radius: 999px;
    font-size: .92rem;
    backdrop-filter: blur(8px);
}
.ea-tick {
    color: #b6e1bd;
    font-weight: 800;
}

/* =========================================================================
   Página de contacto
   ========================================================================= */
.ea-quick-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 56px;
}
.ea-quick-card {
    display: flex; flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 22px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--c-text);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.ea-quick-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-matriz);
    color: var(--c-text);
}
.ea-quick-card-icon {
    width: 46px; height: 46px;
    border-radius: 11px;
    display: grid; place-items: center;
    background: var(--c-matriz-soft);
    color: var(--c-matriz);
    margin-bottom: 14px;
}
.ea-quick-card-icon svg { width: 24px; height: 24px; }
.ea-quick-card h3 { font-size: 1rem; margin: 0 0 4px; }
.ea-quick-card-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-matriz-dark);
}
.ea-quick-card-sub { font-size: .88rem; color: var(--c-text-mute); margin-top: 4px; }
.ea-quick-card.whatsapp .ea-quick-card-icon { background: #DCF8C6; color: #25D366; }
.ea-quick-card.whatsapp .ea-quick-card-value { color: #128C7E; }

.ea-contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}
@media (max-width: 880px) {
    .ea-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.ea-form { display: grid; gap: 16px; }
.ea-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .ea-form-row { grid-template-columns: 1fr; } }
.ea-form-field { display: flex; flex-direction: column; gap: 6px; }
.ea-form-field label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-text);
}
.ea-form-field input,
.ea-form-field select,
.ea-form-field textarea {
    font: inherit;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    background: #fff;
    color: var(--c-text);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.ea-form-field input:focus,
.ea-form-field select:focus,
.ea-form-field textarea:focus {
    outline: 0;
    border-color: var(--c-matriz);
    box-shadow: 0 0 0 3px rgba(45,106,63,.18);
}
.ea-form-field textarea { resize: vertical; min-height: 120px; }
.ea-form-checkbox {
    display: flex; gap: 10px;
    font-size: .9rem;
    color: var(--c-text-soft);
    line-height: 1.5;
}
.ea-form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.ea-form-checkbox a { color: var(--c-matriz); text-decoration: underline; }
.ea-form-submit {
    justify-self: start;
    margin-top: 6px;
}

.ea-info-card {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    margin-bottom: 18px;
}
.ea-info-card h3 {
    font-size: 1.05rem;
    margin: 0 0 14px;
    color: var(--c-matriz-dark);
}
.ea-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ea-info-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .94rem;
    color: var(--c-text);
}
.ea-info-list svg { color: var(--c-matriz); flex-shrink: 0; margin-top: 2px; }
.ea-info-list a { color: var(--c-matriz-dark); font-weight: 600; }
.ea-info-fiscal {
    font-size: .82rem;
    color: var(--c-text-mute);
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--c-border);
}

.ea-map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    aspect-ratio: 4/3;
}
.ea-map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================================
   Footer
   ========================================================================= */
.ea-footer {
    background: var(--c-bg-dark);
    color: rgba(255,255,255,.78);
    padding: 66px 0 30px;
    font-size: .94rem;
}
.ea-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 42px;
}
.ea-footer h4 {
    color: #fff; font-size: .82rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 16px;
}
.ea-footer ul { list-style: none; padding: 0; margin: 0; }
.ea-footer li { margin-bottom: 8px; }
.ea-footer a { color: rgba(255,255,255,.78); transition: color var(--t-fast); }
.ea-footer a:hover { color: var(--c-matriz-light); }
.ea-footer-brand .ea-logo { color: #fff; margin-bottom: 14px; }
.ea-footer-brand p { color: rgba(255,255,255,.62); max-width: 36ch; }
.ea-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 22px;
    display: flex; flex-wrap: wrap; gap: 16px;
    justify-content: space-between;
    font-size: .84rem;
    color: rgba(255,255,255,.55);
}
.ea-footer-fiscal { color: rgba(255,255,255,.40); font-size: .78rem; }

@media (max-width: 760px) {
    .ea-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .ea-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
    .ea-footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Responsive ajustes hero
   ========================================================================= */
@media (max-width: 640px) {
    .ea-hero { min-height: 560px; }
    .ea-hero-inner { padding: 80px 20px 60px; }
    .ea-hero-actions .ea-btn { width: 100%; justify-content: center; }
}
