/* ═══════════════════════════════════════════════════════════
   AGENDA PRODUCTIVA DE EL ORO — Diseño Institucional v2

   Paleta Provincial (basada en logo Prefectura El Oro):
     Dorado El Oro     #C6A030 (prominente — color de la provincia)
     Verde Profundo    #0F2E1A (institucional, fondos oscuros)
     Verde Prefectura  #1A5632 (encabezados, texto institucional)
     Verde Claro       #2E8B57 (acentos, hovers)

   Tipografía:
     DM Serif Display — títulos (elegancia serif moderna)
     Inter — cuerpo (legibilidad, sistema UI)
   ═══════════════════════════════════════════════════════════ */

:root {
    /* ── Colores Provincia de El Oro ── */
    --oro:          #C6A030;
    --oro-light:    #DFC562;
    --oro-pale:     #F5EDD0;
    --oro-deep:     #9E7A1A;

    --verde-pref:       #1A5632;
    --verde-dark:       #0F2E1A;
    --verde-mid:        #1E6B3A;
    --verde-light:      #2E8B57;

    /* ── Neutros ── */
    --white:        #FFFFFF;
    --off-white:    #FAFAF8;
    --gray-50:      #F7F7F5;
    --gray-100:     #EFEFED;
    --gray-200:     #E0E0DC;
    --gray-300:     #C8C8C4;
    --gray-500:     #8E8E8A;
    --gray-600:     #6B6B67;
    --gray-700:     #4A4A47;
    --gray-800:     #2D2D2A;
    --gray-900:     #1A1A18;

    /* ── Tipografía ── */
    --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* ── Sombras (warmth tint) ── */
    --shadow-xs:  0 1px 2px rgba(15, 46, 26, 0.06);
    --shadow-sm:  0 2px 8px rgba(15, 46, 26, 0.08);
    --shadow-md:  0 4px 16px rgba(15, 46, 26, 0.10);
    --shadow-lg:  0 8px 32px rgba(15, 46, 26, 0.12);
    --shadow-xl:  0 16px 48px rgba(15, 46, 26, 0.16);

    /* ── Radios ── */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
}

/* ═══════════════ RESET & BASE ═══════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════ HEADER ═══════════════ */
.header-bar {
    background: var(--verde-dark);
    padding: 7px 0;
}
.header-bar-inner {
    display: flex;
    justify-content: center;
}
.header-bar-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
    font-weight: 400;
}

/* ── Navbar ── */
.nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    padding: 10px 0;
}
.nav--scrolled {
    box-shadow: var(--shadow-md);
    padding: 6px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Brand ── */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand-logos {
    display: flex;
    gap: 8px;
    align-items: center;
}
.brand-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}
.brand-logo-img:hover { transform: scale(1.08); }
.brand-logo-img--wide {
    height: 28px;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--verde-dark);
}
.brand-sub {
    font-size: 0.7rem;
    color: var(--oro-deep);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Nav links ── */
.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: var(--r-sm);
    position: relative;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
    color: var(--verde-pref);
    background: rgba(26, 86, 50, 0.05);
}
.nav-link.active {
    color: var(--verde-dark);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--oro);
    border-radius: 1px;
}

/* ── Mobile toggle ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--active span:nth-child(2) { opacity: 0; }
.nav-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--verde-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(198, 160, 48, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(26, 122, 90, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #0F2E1A 0%, #1A5632 55%, #1E6B3A 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(60deg, rgba(255,255,255,0.5) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,0.5)),
        linear-gradient(60deg, rgba(255,255,255,0.5) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,0.5));
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
}
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--off-white), transparent);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 80px 24px 100px;
    max-width: 820px;
    margin: 0 auto;
}

/* ── Hero badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(198, 160, 48, 0.12);
    border: 1px solid rgba(198, 160, 48, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--oro-light);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--oro);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Hero title ── */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-title-accent {
    color: var(--oro-light);
}

/* ── Hero description ── */
.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ── Hero CTAs ── */
.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}
.btn-gold {
    background: var(--oro);
    color: var(--verde-dark);
    border-color: var(--oro);
}
.btn-gold:hover {
    background: var(--oro-light);
    border-color: var(--oro-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 160, 48, 0.3);
}
.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.btn-gold-outline {
    background: transparent;
    color: var(--oro-light);
    border-color: rgba(198, 160, 48, 0.4);
}
.btn-gold-outline:hover {
    background: rgba(198, 160, 48, 0.1);
    border-color: var(--oro);
    transform: translateY(-2px);
}

/* ── Hero metrics ── */
.hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.metric { text-align: center; }
.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--oro);
    line-height: 1;
    margin-bottom: 8px;
}
.metric-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    letter-spacing: 0.01em;
}
.metric-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
}

/* ═══════════════ SECTION UTILITIES ═══════════════ */
.tag {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--oro-deep);
    margin-bottom: 12px;
    position: relative;
    padding: 0 40px;
}
.tag::before,
.tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--oro);
    opacity: 0.35;
}
.tag::before { right: calc(100% - 28px); }
.tag::after { left: calc(100% - 28px); }

.tag--light { color: var(--oro-light); }
.tag--light::before,
.tag--light::after { background: var(--oro-light); opacity: 0.3; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 400;
    color: var(--verde-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 600px;
}
.section-subtitle--light { color: rgba(255, 255, 255, 0.6); }

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}
.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
    padding: 96px 0;
    background: var(--off-white);
}
.about-header {
    margin-bottom: 48px;
}
.about-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}
.about-text .lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--verde-pref);
    line-height: 1.7;
    margin-bottom: 18px;
}
.about-text p {
    margin-bottom: 14px;
    color: var(--gray-600);
    font-size: 0.95rem;
}
.about-text strong {
    color: var(--verde-dark);
    font-weight: 600;
}

/* ── About cards ── */
.about-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(16px);
}
.about-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.about-card:hover {
    border-color: var(--oro);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.about-card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--verde-dark), var(--verde-pref));
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.about-card-icon svg {
    width: 20px;
    height: 20px;
}
.about-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--verde-dark);
    margin-bottom: 4px;
}
.about-card-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ═══════════════ CIFRAS CLAVE ═══════════════ */
.cifras {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde-pref) 100%);
    position: relative;
}
.cifras::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(198, 160, 48, 0.08) 0%, transparent 70%);
}
.cifras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.cifra {
    text-align: center;
    padding: 20px 16px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.5s ease;
}
.cifra.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cifra-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: var(--oro);
    line-height: 1;
    margin-bottom: 8px;
}
.cifra-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}

/* ═══════════════ EJES PREVIEW ═══════════════ */
.ejes-preview {
    padding: 96px 0;
    background: var(--verde-dark);
    position: relative;
}
.ejes-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(26, 122, 90, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(198, 160, 48, 0.06) 0%, transparent 50%);
}
.ejes-preview .container { position: relative; z-index: 1; }

.ejes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.eje-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(20px);
}
.eje-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.eje-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(198, 160, 48, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.eje-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--eje-color, var(--verde));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.eje-icon svg {
    width: 30px;
    height: 30px;
}
.eje-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
}
.eje-count {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--oro);
    background: rgba(198, 160, 48, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(198, 160, 48, 0.15);
}

.ejes-cta {
    text-align: center;
}

/* ═══════════════ ALIADOS ═══════════════ */
.aliados {
    padding: 96px 0;
    background: var(--off-white);
}
.aliados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.aliado-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(16px);
}
.aliado-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.aliado-card:hover {
    border-color: var(--oro);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.aliado-logo-img-wrap {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.aliado-logo-img {
    max-height: 72px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}
.aliado-logo-img--wide {
    max-height: 48px;
    max-width: 170px;
}

.aliado-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--verde-dark);
    margin-bottom: 8px;
}
.aliado-card p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ═══════════════ ESTRATEGIA BANNER ═══════════════ */
.estrategia-banner {
    padding: 48px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.estrategia-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--oro);
    border-radius: var(--r-md);
}
.estrategia-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(198, 160, 48, 0.1);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oro-deep);
}
.estrategia-icon svg {
    width: 24px;
    height: 24px;
}
.estrategia-text {
    flex: 1;
}
.estrategia-lead {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.estrategia-lead strong {
    color: var(--verde-dark);
}
.estrategia-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--oro-deep);
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(198, 160, 48, 0.25);
    transition: all 0.25s;
}
.estrategia-link:hover {
    background: rgba(198, 160, 48, 0.08);
    border-color: var(--oro);
    color: var(--oro-deep);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 56px 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}
.footer-brand-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 300px;
}
.footer-logos {
    display: flex;
    gap: 12px;
    align-items: center;
}
.f-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(1.3);
    transition: opacity 0.2s;
}
.f-logo-img:hover {
    opacity: 1;
}
.f-logo-img--wide {
    height: 24px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer-nav li {
    margin-bottom: 8px;
}
.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: var(--oro);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.footer-contact-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}
.footer-contact-item span {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .ejes-grid { grid-template-columns: repeat(2, 1fr); }
    .aliados-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-100);
    }
    .nav-menu--open { display: flex; }
    .nav-link.active::after { display: none; }

    .header-bar { display: none; }

    .hero { min-height: 80vh; }
    .hero-content { padding: 60px 20px 80px; }
    .hero-metrics { gap: 28px; }
    .metric-sep { display: none; }

    .about-body { grid-template-columns: 1fr; gap: 40px; }

    .cifras-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .ejes-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

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

    .estrategia-inner { flex-direction: column; text-align: center; }
    .estrategia-link { align-self: center; }

    .footer-main { grid-template-columns: 1fr; gap: 28px; }

    .tag::before, .tag::after { display: none; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .cifras-grid { grid-template-columns: 1fr 1fr; }
    .aliados-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
    .brand-logos { gap: 3px; }
    .brand-logo-item { width: 26px; height: 26px; }
}
