/* ══════════════════════════════════════════════════
   ISNL — layout.css
   Topbar · Nav · Botones · Footer · Responsive
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════ */
.topbar {
    background: var(--dark);
    padding: 7px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition);
}
.topbar a:hover { color: var(--yellow); }
.topbar-left,
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    font-size: 11px;
    font-weight: 700;
}
.topbar-right a:hover {
    background: var(--yellow);
    color: var(--navy);
}

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: transform 0.35s ease, opacity 0.35s ease;
}
nav.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 40px;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-link {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
    gap: 5px;
    cursor: pointer;
    letter-spacing: 0.01em;
    border: none;
    background: none;
}
.nav-link:hover  { background: rgba(255,255,255,0.08); }
.nav-link.active { background: var(--yellow); color: var(--navy); font-weight: 600; }
.nav-link .chevron { font-size: 10px; opacity: 0.7; }

.nav-mobile-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    border-top: 3px solid var(--yellow);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 11px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown a:hover {
    background: rgba(251,213,33,0.1);
    color: var(--yellow);
    padding-left: 26px;
}


/* ══════════════════════════════════════════════════
   BOTONES GLOBALES
══════════════════════════════════════════════════ */
.btn-primary {
    padding: 14px 32px;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #ffe033;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251,213,33,0.3);
}
.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
}

/* Variante para fondos claros */
.btn-secondary-dark {
    padding: 14px 32px;
    background: transparent;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid rgba(1,30,49,0.3);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary-dark:hover {
    border-color: var(--navy);
    background: rgba(1,30,49,0.05);
}


/* ══════════════════════════════════════════════════
   SECCIÓN — COMMONS
══════════════════════════════════════════════════ */
.section { padding: 88px 0; }
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header        { margin-bottom: 52px; }
.section-header.center { text-align: center; }

.overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.overline::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.section-title span  { color: var(--red); }
.section-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 560px;
    margin-top: 14px;
}
.section-header.center .section-desc { margin: 14px auto 0; }

/* ══════════════════════════════════════════════════

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
}
.footer-logo span { color: var(--white); }
.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--navy); }
.footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-links a::before { content: '›'; opacity: 0.4; }
.footer-contact { display: flex; flex-direction: column; gap: 20px; }

/* Sedes en el footer */
.footer-sede-item { display: flex; flex-direction: column; gap: 4px; }
.footer-sede-name {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer-sede-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.footer-sede-dot.david       { background: var(--yellow); }

.footer-sede-data {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    padding-left: 15px;
}
.footer-sede-data a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-sede-data a:hover { color: var(--yellow); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--yellow); }

.footer-sedes-btn {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
    border: 1px solid rgba(251,213,33,0.3);
    padding: 7px 14px;
    border-radius: 3px;
    transition: all var(--transition);
    list-style: none;
}
.footer-sedes-btn::before {
    content: none !important;
}
.footer-sedes-btn:hover {
    background: var(--yellow);
    color: var(--navy);
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOTANTE
══════════════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    z-index: 999;
    transition: transform var(--transition);
    animation: wapulse 3s infinite;
}
.wa-float:hover { transform: scale(1.1); }

/* ══════════════════════════════════════════════════
   ANIMACIONES
══════════════════════════════════════════════════ */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}
@keyframes wapulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero animations */
.hero-label  { animation: fadeInUp 0.6s ease both; }
.hero h1     { animation: fadeInUp 0.7s 0.1s ease both; }
.hero p      { animation: fadeInUp 0.7s 0.2s ease both; }
.hero-btns   { animation: fadeInUp 0.7s 0.3s ease both; }
.hero-visual { animation: fadeInUp 0.8s 0.4s ease both; }


/* ══════════════════════════════════════════════════
   RESPONSIVE — OFERTA
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   PAGE HERO — usado en todas las páginas internas
══════════════════════════════════════════════════ */
.page-hero {
    background: var(--navy);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--yellow), var(--red));
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0px, transparent 28px,
        rgba(255,255,255,0.015) 28px, rgba(255,255,255,0.015) 29px
    );
}
.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.page-hero-title span { color: var(--yellow); }
.page-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Sede pills */
.sede-summary { display: flex; flex-wrap: wrap; gap: 10px; }
.sede-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    white-space: nowrap;
}
.sede-pill:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.sede-pill.active { border-color: var(--yellow); color: var(--yellow); }
.sede-pill-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sede-pill-dot.david       { background: var(--yellow); }
.sede-pill-dot.santiago    { background: var(--red); }
.sede-pill-dot.changuinola { background: var(--green); }
.sede-pill.active.david       { border-color: var(--yellow); color: var(--yellow); }
.sede-pill.active.santiago    { border-color: var(--red);    color: var(--red); }
.sede-pill.active.changuinola { border-color: var(--green);  color: var(--green); }
.sede-pill-count {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 11px;
    font-weight: 700;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE — BREAKPOINTS COMPLETOS
   1024px · 768px · 480px · 375px
══════════════════════════════════════════════════ */

/* ─── Tablet landscape (≤ 1180px) ───────────────── */
@media (max-width: 1180px) {
    /* Nav — reducir espaciado para que quepan todos los items */
    .nav-link         { padding: 0 10px; font-size: 13px; }
    .nav-inner        { padding: 0 16px; }
    .nav-logo-img     { height: 46px; }
    .nav-logo         { margin-right: 20px; }

    /* Hero */
    .hero-inner       { gap: 32px; padding: 60px 20px; }
    .hero h1          { font-size: 42px; }
    .hero-cards-grid  { gap: 10px; }
    .hero-card        { padding: 16px; }

    /* Stats */
    .stat-item        { padding: 24px 16px; gap: 12px; }
    .stat-num         { font-size: 30px; }
}

/* ─── Tablet (≤ 1024px) ──────────────────────────── */
@media (max-width: 1024px) {
    .why-grid        { grid-template-columns: repeat(3, 1fr); }
    .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
    .programs-grid   { grid-template-columns: repeat(2, 1fr); }
    .oferta-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Móvil grande (≤ 768px) ────────────────────── */
@media (max-width: 768px) {

    /* Topbar — ocultar en móvil, no aporta a esa escala */
    .topbar { display: none; }

    /* Nav */
    .nav-links         { display: none; }
    .nav-mobile-toggle { display: block; }
    .nav-inner         { height: 62px; }
    .nav-logo-img      { height: 44px; }

    /* Nav abierto */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 62px;
        left: 0; right: 0;
        background: var(--navy);
        padding: 8px 0 16px;
        z-index: 999;
        border-top: 2px solid var(--yellow);
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        max-height: calc(100vh - 62px);
        overflow-y: auto;
    }
    .nav-links.open .nav-link {
        height: auto;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    /* Dropdowns en móvil: siempre visibles debajo de su ítem */
    .nav-links.open .nav-item .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--yellow);
        margin-left: 20px;
        min-width: unset;
        width: calc(100% - 20px);
    }
    /* Ocultar dropdowns de ítems que no están activos en móvil */
    .nav-links.open .nav-item:not(.open-item) .dropdown {
        display: none;
    }
    .nav-links.open .nav-item.open-item .dropdown {
        display: block;
    }

    /* Hero */
    .hero             { min-height: auto; }
    .hero-inner       { grid-template-columns: 1fr; gap: 0; padding: 56px 20px; }
    .hero-visual      { display: none; }
    .hero h1          { font-size: clamp(36px, 8vw, 52px); }
    .hero p           { font-size: 15px; }

    /* Stats — 2 columnas */
    .stats-inner      { grid-template-columns: repeat(2, 1fr); }
    .stat-item        { padding: 20px 16px; gap: 12px; }
    .stat-num         { font-size: 28px; }

    /* Sección padding */
    .section          { padding: 64px 0; }
    .section-inner    { padding: 0 20px; }

    /* Programs */
    .programs-grid    { grid-template-columns: 1fr; }
    .program-tabs     { gap: 0; }
    .ptab             { padding: 10px 14px; font-size: 12px; }

    /* Why */
    .why-grid         { grid-template-columns: repeat(2, 1fr); }

    /* Testimonials */
    .testi-grid       { grid-template-columns: 1fr; }

    /* Formulario */
    .form-wrap        { grid-template-columns: 1fr; }
    .form-grid        { grid-template-columns: 1fr; }
    .form-group.full  { grid-column: auto; }
    .form-box         { padding: 24px 20px; }

    /* Footer */
    .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom    { flex-direction: column; text-align: center; gap: 8px; }
    .footer-sede-item { padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .footer-sede-item:last-child { border-bottom: none; }

    /* Page hero */
    .page-hero-inner  { padding: 0 20px; }
    .page-hero-title  { font-size: clamp(32px, 7vw, 50px); }

    /* Oferta */
    .oferta-grid      { grid-template-columns: 1fr; }
    .oferta-cta-inner { flex-direction: column; gap: 24px; }
    .oferta-cta-btns  { width: 100%; }
    .oferta-cta-btns a { justify-content: center; }
    .sede-summary     { gap: 8px; }
    .sede-pill        { font-size: 12px; padding: 7px 12px; }

    /* WhatsApp float */
    .wa-float { bottom: 18px; right: 18px; width: 48px; height: 48px; font-size: 22px; }
}

/* ─── Móvil pequeño (≤ 480px) ───────────────────── */
@media (max-width: 480px) {

    /* Stats — 1 columna en pantallas muy pequeñas */
    .stats-inner  { grid-template-columns: 1fr 1fr; }
    .stat-icon    { display: none; }

    /* Why */
    .why-grid     { grid-template-columns: 1fr; }

    /* Hero */
    .hero h1      { font-size: 34px; }
    .hero-btns    { flex-direction: column; }
    .hero-btns a  { text-align: center; justify-content: center; }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary { padding: 13px 24px; width: 100%; justify-content: center; }

    /* Sección */
    .section        { padding: 48px 0; }
    .section-title  { font-size: 28px; }

    /* Formulario */
    .form-submit    { font-size: 13px; padding: 14px; }

    /* Footer */
    .footer-bottom > div { flex-direction: column; gap: 8px; }

    /* Oferta pills */
    .sede-summary   { flex-direction: column; align-items: flex-start; }
    .sede-pill      { width: 100%; justify-content: space-between; }

    /* Tabs de programas: scroll horizontal */
    .program-tabs   { -webkit-overflow-scrolling: touch; }
    .ptab           { flex-shrink: 0; }
}

/* ─── Móvil muy pequeño (≤ 375px) ───────────────── */
@media (max-width: 375px) {
    .nav-logo-img   { height: 38px; }
    .hero h1        { font-size: 30px; }
    .stat-num       { font-size: 24px; }
    .section-inner  { padding: 0 16px; }
    .form-box       { padding: 18px 14px; }
    .page-hero      { padding: 52px 0 44px; }
}

/* ══════════════════════════════════════════════════
   TOAST — notificación de éxito
══════════════════════════════════════════════════ */
.toast-success {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy);
    border: 1px solid rgba(251,213,33,0.3);
    border-left: 4px solid var(--yellow);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(1,30,49,0.3);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    max-width: 420px;
    width: calc(100% - 48px);
}
.toast-success.toast-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast-icon { font-size: 22px; flex-shrink: 0; }
.toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.toast-body strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
}
.toast-body span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    cursor: pointer;
    padding: 2px 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}
.toast-close:hover { color: var(--white); }

@media (max-width: 480px) {
    .toast-success { bottom: 80px; } /* encima del botón de WhatsApp */
}


/* ─── Transiciones de entrada por sección ─────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-child.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-child:nth-child(1) { transition-delay: 0.05s; }
.reveal-child:nth-child(2) { transition-delay: 0.15s; }
.reveal-child:nth-child(3) { transition-delay: 0.25s; }
.reveal-child:nth-child(4) { transition-delay: 0.35s; }

/* ══════════════════════════════════════════════════
   CTA BOTTOM — reutilizado en admision, oferta y otras páginas
══════════════════════════════════════════════════ */
.oferta-cta { background: var(--navy); padding: 72px 0; }
.oferta-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.oferta-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}