/* ===== VARIABLES Y RESET ===== */
:root {
    --primary-blue: #0A2463;
    --secondary-blue: #3E78B2;
    --accent-green: #00A896;
    --accent-orange: #FF6B35;
    --neutral-gray: #5D737E;
    --light-gray: #F0F4F8;
    --dark: #1A1A1A;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    padding-bottom: 70px; /* Para bottom nav en móvil */
    overflow-x: hidden;
    /* Blanco por defecto. El hero usa el mismo azul que la stats-bar, asi
       que entre los dos no se ve ningun "blanco asomar" detras del arco. */
}

/* En desktop el navbar es flotante glass (semi-transparente). Por eso NO
   damos padding-top al body — queremos que el hero llegue hasta el borde
   superior del navegador y el navbar quede flotando ENCIMA, dejando ver
   la imagen del hero a traves del glass.
   Al hacer scroll el navbar pasa a ser opaco y se pega al top — ahi el
   contenido siguiente queda debajo naturalmente porque el hero ya paso. */
@media (min-width: 992px) {
    body {
        padding-top: 0;
    }
}

/* Cuando el usuario hace click en un anchor del menu (ej: #convenios), el
   browser scrollea para alinear el top de la seccion al top del viewport.
   Como nuestro navbar fixed lo tapa, le damos scroll-margin-top para
   compensar — la seccion queda visible debajo del navbar al saltar. */
@media (min-width: 992px) {
    section[id] {
        scroll-margin-top: 80px;
    }
}
@media (max-width: 991px) {
    section[id] {
        scroll-margin-top: 60px;
    }
}

/* ===== HEADER MOBILE ===== */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1040;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.mobile-header-logo img {
    height: 28px;
}

@media (min-width: 992px) {
    .mobile-header {
        display: none !important;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 50px;
    }
}

/* ===== NAVEGACIÓN ===== */
.bottom-nav {
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
    z-index: 1030;
}

.bottom-nav .nav-link {
    color: var(--neutral-gray);
    padding: 8px 0;
    font-size: 12px;
    transition: var(--transition);
    opacity: 0.7;
    flex: 1;
    text-align: center;
}

.bottom-nav .nav-link:hover,
.bottom-nav .nav-link.active {
    color: var(--primary-blue);
    opacity: 1;
}

.bottom-nav .nav-link i {
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
}

/* Tabs de navegación */
.nav-tab.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

/* ============================================================
   NAVBAR DESKTOP — pill flotante con slide-in
   ============================================================ */
/* En estado inicial el navbar flota separado del top (no pegado).
   Al hacer scroll (>50px) se agrega la clase .navbar-scrolled que lo
   pega arriba y le quita el redondeo (ver hookup en layout.html). */
#mainNavbar {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: top 0.35s ease, max-width 0.35s ease,
                border-radius 0.35s ease, box-shadow 0.35s ease,
                background 0.25s ease;
    overflow: visible;
}

/* Al hacer scroll: se pega arriba sin redondeo (mas formal/profesional) */
#mainNavbar.navbar-scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.hero-navbar-container {
    padding: 6px 24px !important;
}
#mainNavbar.navbar-scrolled .hero-navbar-container {
    padding: 6px 30px !important;
}

/* Items con icono encima + label debajo (estilo fondefis) */
#mainNavbar .nav-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 18px !important;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    border-radius: 14px;
    transition: color 0.2s, background 0.2s, transform 0.2s;
    text-align: center;
}
#mainNavbar .nav-icon-link i {
    font-size: 22px;
    line-height: 1;
}
#mainNavbar .nav-icon-link span {
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-weight: 700;
}
#mainNavbar .nav-icon-link:hover {
    color: var(--accent-green, #55662B);
    background: rgba(85, 102, 43, 0.08);
}
/* ACTIVE state: tab seleccionado tiene bg verde mas marcado + borde abajo
   + icon mas grande, para que sea claro cual esta seleccionado tambien en
   desktop (antes era muy sutil y casi invisible). */
#mainNavbar .nav-icon-link.active,
#mainNavbar .nav-tab.active {
    color: var(--accent-green, #55662B) !important;
    background: rgba(85, 102, 43, 0.18) !important;
    position: relative;
}
#mainNavbar .nav-icon-link.active::after,
#mainNavbar .nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--accent-green, #55662B);
}
#mainNavbar .nav-icon-link.active i {
    transform: scale(1.08);
    transition: transform 0.2s;
}

/* Botones CTA (Oficina Virtual, PQRS, etc.) renderizados como iconos
   verticales — mismo formato que los items del menu pero con bg coloreado.
   Asi en pantallas medianas/chicas fitean junto con el resto del menu. */
#mainNavbar .nav-cta-icon {
    /* Hereda el flex-col + icon-top + label-bottom de .nav-icon-link */
    color: #fff;
    border-radius: 14px;
}
/* Variantes de color segun btn_style del admin (mantenemos compatibilidad
   con los valores actuales: dark, outline-primary, primary, success, etc.) */
#mainNavbar .nav-cta-dark {
    background: #1f2937;
    color: #fff;
}
#mainNavbar .nav-cta-dark:hover {
    background: #374151;
    color: var(--accent-secondary, #A3BF36);
}
#mainNavbar .nav-cta-outline-primary,
#mainNavbar .nav-cta-outline-secondary,
#mainNavbar .nav-cta-light {
    background: #fff;
    color: var(--accent-green, #55662B);
    border: 1.5px solid var(--accent-green, #55662B);
}
#mainNavbar .nav-cta-outline-primary:hover,
#mainNavbar .nav-cta-outline-secondary:hover,
#mainNavbar .nav-cta-light:hover {
    background: var(--accent-green, #55662B);
    color: #fff;
}
#mainNavbar .nav-cta-primary,
#mainNavbar .nav-cta-success {
    background: var(--accent-green, #55662B);
    color: #fff;
}
#mainNavbar .nav-cta-primary:hover,
#mainNavbar .nav-cta-success:hover {
    background: var(--accent-secondary, #A3BF36);
    color: #fff;
}

/* ===== OCULTAR PQRS EN TABLET HORIZONTAL =====
   Entre 992 y 1280px el navbar desktop ya esta visible pero no le alcanza
   el espacio para mostrar todos los items + Oficina Virtual + PQRS sin
   que se mordan. Ocultamos el CTA de PQRS — el usuario lo sigue teniendo
   en el menu lateral mobile (hamburguesa abre en <992) y en el footer.
   El selector usa el data-bs-target del modal, no requiere clase nueva
   en el template. */
@media (min-width: 992px) and (max-width: 1280px) {
    #mainNavbar .nav-cta-icon[data-bs-target="#pqrsModal"] {
        display: none !important;
    }
}

/* ===== ANIMACION SLIDE-IN AL CARGAR =====
   La mitad izquierda (logo + items) entra desde la izquierda.
   La mitad derecha (botones CTA) entra desde la derecha.
   Ambas usan opacity 0 -> 1 y un desplazamiento horizontal. */
@keyframes navSlideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes navSlideFromRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.nav-half-left {
    animation: navSlideFromLeft 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: 0.1s;
}
.nav-half-right {
    animation: navSlideFromRight 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: 0.25s;
}
/* Respetar a usuarios con prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .nav-half-left,
    .nav-half-right {
        animation: none;
    }
    #mainNavbar { transition: none; }
}

/* ===== HERO SECTION =====
   Desktop: descuenta el navbar fixed (80px) para que la imagen no quede
   tapada arriba. El body ya tiene padding-top: 80px en desktop, por eso
   el hero arranca justo debajo del navbar.
   Mobile: descuenta header (50px) + bottom-nav (70px) = 120px. */
/* Wrapper: contenedor que envuelve hero + stats-bar para que esta ultima
   pueda flotar (position:absolute) ENCIMA del bottom del hero. */
.hero-stats-wrap {
    position: relative;
    height: 100vh;
}

.hero-section {
    /* Hero llena el 100% del wrapper = 100vh. La imagen (cover) ocupa
       toda la pantalla. La stats-bar glass se posiciona absoluta al
       bottom del wrapper, montandose sobre los ultimos pixels de la imagen. */
    height: 100%;
    min-height: 480px;
    position: relative;
    background-color: var(--hero-bg, #55662B);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 420px;
    }
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

/* Slides: gradientes se aplican inline desde el template con colores de Firestore */

/* Swiper personalización */
.hero-swiper {
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);

    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #F0F4F8;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-green);
}

/* ===== SECCIONES DINÁMICAS ===== */
.sections-container {
    position: relative;
}

.sections-container.no-hero {
    padding-top: 20px;
}

@media (min-width: 992px) {
    .sections-container.no-hero {
        padding-top: 80px;
    }
}

.section-tab {
    display: none;
    animation: fadeIn 0.5s ease;
}

.section-tab.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Iconos y elementos decorativos */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* ===== CRÉDITOS INNOVADOR ===== */
.credito-grid-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.credito-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.credito-grid-header {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.credito-grid-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.credito-grid-card:hover .credito-grid-header img {
    transform: scale(1.05);
}

.credito-grid-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    backdrop-filter: blur(5px);
}

.credito-grid-body {
    padding: 24px;
}

.credito-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.credito-grid-desc {
    color: var(--neutral-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.credito-grid-conditions {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.condition-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.condition-label {
    color: var(--neutral-gray);
}

.condition-value {
    color: var(--primary-blue);
    font-weight: 600;
}

.credito-grid-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Filtros de créditos */
.filtros-creditos .btn {
    border-radius: 20px;
    padding: 8px 16px;
    transition: var(--transition);
}

.filtros-creditos .btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== CONVENIOS ===== */
.convenio-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.convenio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.convenio-header {
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    position: relative;
}

.convenio-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
}

.convenio-empresa {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.convenio-body {
    padding: 24px;
}

.convenio-desc {
    color: var(--neutral-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.convenio-benefits {
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.benefit-item i {
    color: var(--accent-green);
    margin-right: 12px;
    font-size: 14px;
}

.benefit-item span {
    font-size: 0.95rem;
}

.convenio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== DOCUMENTOS ===== */
.document-card {
    transition: var(--transition);
    border-radius: 16px;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* ===== NOTICIAS ===== */
.noticia-card {
    transition: var(--transition);
    border-radius: 16px;
    overflow: hidden;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.noticia-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.noticia-categoria {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

/* ===== BOTONES FLOTANTES (PSE + WhatsApp) ===== */
.floating-buttons {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1020;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.float-pse {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.float-whatsapp {
    background: #25D366;
}

.float-label {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
}

@media (min-width: 992px) {
    .floating-buttons {
        bottom: 30px;
        right: 30px;
    }

    .float-btn {
        width: auto;
        height: 48px;
        border-radius: 24px;
        padding: 0 20px;
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .floating-buttons {
        bottom: 80px;
    }
}

/* ===== BARRA DE CIFRAS ===== */
/* Stats bar en BLANCO con arco. La sombra oscura arriba enmarca el arco
   sobre el hero (que mantiene su color configurable desde admin). */
/* Stats-bar BLANCA SÓLIDA con curvita arriba. Posicionada absoluta en el
   bottom del wrapper para que la imagen llene 100vh detrás. La curva del
   border-top-radius revela la imagen en el centro superior; los corners
   inferiores quedan blancos (parte natural del stats-bar). */
.stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 60px 0 28px;  /* extra top para que numeros no toquen la curva */
    z-index: 10;
    /* Curva sutil arriba: 50% horizontal / 70px vertical = arco que sube
       en el centro revelando la imagen detras. */
    border-top-left-radius: 50% 70px;
    border-top-right-radius: 50% 70px;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);
}

/* ====== MOBILE (<=768px) — stats-bar como seccion NORMAL bajo el hero ======
   Quitamos position:absolute y border-top-radius. La stats-bar deja de
   flotar sobre el hero y queda en flujo, debajo. El hero ocupa el alto
   visible disponible (calc 100svh - header movil - bottom-nav).
   Los items se animan con fade+slide-up en stagger al hacer scroll. */
@media (max-width: 768px) {
    .hero-stats-wrap {
        /* Suma natural: hero + stats-bar. Ya no es 100vh fijo. */
        height: auto;
    }
    .hero-section {
        /* 100svh = small viewport height (descuenta la barra dinamica del
           browser en mobile). 50px header movil + 70px bottom-nav = 120px. */
        height: calc(100svh - 120px);
        min-height: 360px;
    }
    .stats-bar {
        position: static;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 32px 0 100px;   /* 100 abajo: aire arriba del bottom-nav */
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        /* Sombra suave hacia abajo para separar visualmente del hero. */
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    }
    /* Estado inicial: invisible + desplazada hacia abajo. Al entrar en el
       viewport (IntersectionObserver de layout.html agrega .visible), cada
       item se anima con un delay escalonado. */
    .stats-bar-item {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        border-right: none;       /* en mobile ya no hay separadores */
    }
    .stats-bar-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    .stats-bar-item:nth-child(1) { transition-delay: 0.00s; }
    .stats-bar-item:nth-child(2) { transition-delay: 0.12s; }
    .stats-bar-item:nth-child(3) { transition-delay: 0.24s; }
    .stats-bar-item:nth-child(4) { transition-delay: 0.36s; }
}

.stats-bar-item {
    padding: 8px 16px;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green, #55662B);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stats-bar-label {
    font-size: 0.95rem;
    color: var(--neutral-gray, #5D737E);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CREDITO CARDS (nuevas) ===== */
.credito-card {
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.credito-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.credito-card-icon {
    font-size: 3rem;
    opacity: 0.6;
}

.credito-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credito-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
}

/* ===== NOSOTROS: VALORES — GRID RESPONSIVE =====
   Antes era flex+overflow-x con cards de 160px fijos. Quedaba muy apretado
   y textos como "Responsabilidad y Autoayuda" se cortaban en muchas lineas.
   Ahora: grid auto-fit que aprovecha TODO el ancho disponible — si caben
   5 cards en una fila, 5 columnas; si no, 4/3/2/1 segun viewport. */
.valores-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    padding: 4px 0 12px;
    /* Compatibilidad: dragscroll JS sigue listado pero ya no se activa
       (no hay overflow horizontal). No rompe nada. */
}

.valor-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    /* min-height para que cards con poco texto no queden mas chicas que las
       hermanas con mas texto. */
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.valor-card h6 {
    font-size: 1rem;
    margin-bottom: 8px;
    /* No forzamos line-clamp — que el titulo se vea completo */
}
.valor-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
}

/* ===== NOSOTROS: TIMELINE ===== */
.timeline-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 8px 0 16px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    position: relative;
}

.timeline-scroll::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-green);
    opacity: 0.3;
    z-index: 0;
}

.timeline-card {
    flex-shrink: 0;
    width: 220px;
    padding: 0 20px;
    position: relative;
    text-align: center;
}

.timeline-year {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-green);
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(163, 191, 54, 0.2);
}

/* ===== NOSOTROS: VIDEOS ===== */
.videos-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.video-card {
    flex-shrink: 0;
    width: 240px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.video-thumb {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-thumb i {
    opacity: 0.8;
    transition: var(--transition);
}

.video-card:hover .video-thumb i {
    opacity: 1;
    transform: scale(1.2);
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.4);
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.video-info {
    padding: 14px;
}

@media (max-width: 768px) {
    /* Grid: en mobile usa min 150px asi entran 2 por fila comodo */
    .valores-scroll { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
    .valor-card { padding: 18px 12px; }
    .valor-card h6 { font-size: 0.92rem; }
    .valor-card p { font-size: 0.85rem; line-height: 1.45; }
    .timeline-card { width: 180px; padding: 0 14px; }
    .video-card { width: 200px; }
    .video-thumb { height: 110px; }
}

/* ===== CONVENIOS ===== */
.conv-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.conv-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

/* Propuesta C: Netflix scroll */
.conv-netflix-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.conv-netflix-scroll:active {
    cursor: grabbing;
}

.conv-netflix-card {
    flex-shrink: 0;
    width: 210px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    border: 1px solid #f1f5f9;
}

.conv-netflix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* Sobrescribir el bg-${color} bg-opacity-10 que viene del HTML.
   Queremos fondo blanco uniforme — los logos quedan limpios y consistentes. */
.conv-netflix-top {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff !important;
    padding: 18px 22px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.conv-netflix-logo {
    max-width: 100%;
    max-height: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
    transition: transform 0.25s;
}

.conv-netflix-card:hover .conv-netflix-logo {
    transform: scale(1.04);
}

/* Si no hay logo (fallback ícono): mostrarlo grande y prominente */
.conv-netflix-top > i.fas {
    font-size: 2.6rem !important;
    opacity: 0.55;
}

/* Linea de color superior segun categoria. El color se hereda de la
   clase bg-${color} que pone el HTML; lo capturamos como acento. */
.conv-netflix-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.85;
}

.conv-netflix-body {
    padding: 14px 16px 16px;
    background: #fff;
}

.conv-netflix-body h6 {
    line-height: 1.25;
    color: #1e293b;
}

/* Nav pills convenios */
#convTabs {
    gap: 6px;
}

#convTabs .nav-link {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 6px 16px;
    color: var(--neutral-gray);
    background: var(--light-gray);
    white-space: nowrap;
}

#convTabs .nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
}

@media (max-width: 768px) {
    .conv-netflix-card {
        width: 165px;
    }

    .conv-netflix-top {
        height: 95px;
        padding: 14px 16px;
    }

    .conv-netflix-logo {
        max-height: 64px;
    }

    .conv-netflix-top > i.fas {
        font-size: 2rem !important;
    }
}

/* ===== GALERIA CREDITOS - DISEÑO FULL-BLEED CON IMAGEN ===== */
/* Cada slide es una sola tarjeta full-width con imagen de fondo y overlay
   gradiente del color del credito. La info va a la izquierda, encima del
   gradiente. La imagen queda visible a la derecha. */

.credito-bg-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 360px;
    max-height: 540px;
    border-radius: 18px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    /* --credito-rgb se setea inline por slide */
}

/* Imagen real: COMPLETA, sin recortar (object-fit:contain).
   Z-index 1 — encima del blur de fondo, debajo del overlay. */
.credito-bg-img,
.credito-bg-img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

/* Imagen blureada de fondo (truco "fitted image"): la MISMA imagen
   se duplica, se agranda 10%, se le aplica blur fuerte y opacidad menor.
   Llena los espacios vacíos cuando la imagen no tiene la misma proporción
   que la card, evitando bordes grises feos. Z-index 0 — debajo de todo. */
.credito-bg-img-blur {
    position: absolute;
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
    object-fit: cover;
    filter: blur(28px) brightness(0.7);
    z-index: 0;
    pointer-events: none;
}

.credito-bg-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgb(var(--credito-rgb, 85, 102, 43)),
        rgba(var(--credito-rgb, 85, 102, 43), 0.7));
    color: rgba(255,255,255,0.4);
    font-size: 120px;
}

.credito-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Gradiente RADIAL (tipo flyer): nace en la esquina inferior-izquierda
       como un "splash" elíptico. Cubre opaco la zona de texto y se desvanece
       suavemente hacia la imagen visible (esquina superior-derecha). */
    background: radial-gradient(
        ellipse 95% 80% at bottom left,
        rgba(var(--credito-rgb, 40, 190, 70), 0.98) 0%,
        rgba(var(--credito-rgb, 40, 190, 70), 0.93) 30%,
        rgba(var(--credito-rgb, 40, 190, 70), 0.80) 50%,
        rgba(var(--credito-rgb, 40, 190, 70), 0.45) 70%,
        rgba(var(--credito-rgb, 40, 190, 70), 0.10) 88%,
        transparent 100%
    );
    pointer-events: none;
}

.credito-bg-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 36px 40px 36px 44px;
    color: #fff;
    width: 65%;
    max-width: 620px;
}

.credito-bg-categoria {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.25);
}

.credito-bg-titulo {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: #fff;
}

.credito-bg-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 22px;
    max-width: 460px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.credito-bg-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.credito-bg-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 10px 18px 10px 10px;
}

.credito-bg-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.credito-bg-stat-info { line-height: 1.2; }

.credito-bg-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    font-weight: 500;
}

.credito-bg-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1px;
}

.credito-bg-btn {
    align-self: flex-start;
    background: #fff;
    color: rgb(var(--credito-rgb, 85, 102, 43));
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.credito-bg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.credito-bg-btn:active {
    transform: translateY(0);
}

/* Tablet (768px - 991px): bajamos tamaños del titulo/desc/pills para que
   el contenido no se desborde de la zona del overlay verde y no se invada
   la imagen de la persona. */
@media (min-width: 768px) and (max-width: 991px) {
    .credito-bg-card {
        aspect-ratio: 16 / 9;
        min-height: 320px;
        max-height: 460px;
    }
    .credito-bg-content {
        width: 68%;
        max-width: 100%;
        padding: 26px 28px 26px 30px;
    }
    .credito-bg-categoria {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .credito-bg-titulo {
        font-size: 1.85rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    .credito-bg-desc {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 14px;
        max-width: 100%;
    }
    .credito-bg-stats {
        gap: 8px;
        margin-bottom: 14px;
    }
    .credito-bg-stat {
        padding: 7px 14px 7px 7px;
        gap: 9px;
    }
    .credito-bg-stat-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .credito-bg-stat-label { font-size: 10px; }
    .credito-bg-stat-value { font-size: 0.88rem; }
    .credito-bg-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
    }
    /* Grid poster: titulo un poquito mas chico tambien */
    .credito-grid-poster-titulo { font-size: 1.2rem; }
    .credito-grid-poster-content { padding: 16px; }
    .credito-grid-poster-btn { padding: 7px 14px; font-size: 0.8rem; }
}

/* Mobile: portrait, contenido ocupa todo el ancho con overlay desde abajo */
@media (max-width: 767px) {
    .credito-bg-card {
        aspect-ratio: 4 / 5;
        min-height: 480px;
    }
    .credito-bg-overlay {
        /* En vertical el "splash" sale desde el centro-inferior y cubre la
           parte de abajo donde va el texto. */
        background: radial-gradient(
            ellipse 130% 70% at bottom center,
            rgba(var(--credito-rgb, 40, 190, 70), 0.95) 0%,
            rgba(var(--credito-rgb, 40, 190, 70), 0.80) 30%,
            rgba(var(--credito-rgb, 40, 190, 70), 0.50) 55%,
            rgba(var(--credito-rgb, 40, 190, 70), 0.15) 75%,
            transparent 90%
        );
    }
    .credito-bg-content {
        width: 100%;
        max-width: 100%;
        padding: 24px 22px;
    }
    .credito-bg-titulo { font-size: 1.85rem; }
    .credito-bg-desc { font-size: 0.95rem; }
    .credito-bg-stat { padding: 8px 14px 8px 8px; }
    .credito-bg-stat-icon { width: 32px; height: 32px; font-size: 13px; }
    .credito-bg-stat-value { font-size: 0.9rem; }
}

.creditos-galeria-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== VISTA GRILLA / POSTER ===== */
/* Cards verticales tipo poster: imagen de fondo + gradiente abajo→arriba del
   color del credito + solo nombre y boton "Ver mas". Click abre modal. */

.credito-grid-poster {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 280px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}
.credito-grid-poster:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.credito-grid-poster-img,
.credito-grid-poster-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.credito-grid-poster-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgb(var(--credito-rgb, 40, 190, 70)),
        rgba(var(--credito-rgb, 40, 190, 70), 0.65));
    color: rgba(255,255,255,0.4);
    font-size: 90px;
}

.credito-grid-poster-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* DOS capas:
       1) Velo oscuro arriba para ocultar watermarks/textos que vengan dentro
          de la imagen (la primera regla en background queda ARRIBA).
       2) Gradiente vertical del color del crédito desde abajo hacia arriba.
          Cubre solo ~35-40% inferior — donde van el badge, título y botón.
          El resto de la imagen queda visible sin tinte. */
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.20) 18%,
            rgba(0, 0, 0, 0.05) 32%,
            transparent 45%),
        linear-gradient(0deg,
            rgba(var(--credito-rgb, 40, 190, 70), 0.97) 0%,
            rgba(var(--credito-rgb, 40, 190, 70), 0.93) 18%,
            rgba(var(--credito-rgb, 40, 190, 70), 0.70) 28%,
            rgba(var(--credito-rgb, 40, 190, 70), 0.30) 35%,
            rgba(var(--credito-rgb, 40, 190, 70), 0) 42%);
    pointer-events: none;
}

/* Sutil zoom de la imagen en hover (efecto Netflix) */
.credito-grid-poster-img {
    transition: transform 0.4s ease;
}
.credito-grid-poster:hover .credito-grid-poster-img {
    transform: scale(1.06);
}

.credito-grid-poster-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 18px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.credito-grid-poster-badge {
    align-self: flex-start;
    display: inline-block;
    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.credito-grid-poster-titulo {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.credito-grid-poster-btn {
    align-self: flex-start;
    background: #fff;
    color: rgb(var(--credito-rgb, 40, 190, 70));
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}
.credito-grid-poster-btn:hover {
    transform: translateX(2px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.25);
}

@media (max-width: 575px) {
    .credito-grid-poster {
        aspect-ratio: 1 / 1;
        min-height: 260px;
    }
    .credito-grid-poster-titulo { font-size: 1.15rem; }
}

.galeria-slide {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    background: var(--white);
}

.galeria-slide-left {
    width: 200px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    color: var(--white);
    position: relative;
}

.galeria-slide-number {
    font-size: 3.5rem;
    font-weight: 900;
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 20px;
    line-height: 1;
}

.galeria-slide-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.galeria-slide-right {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

.galeria-conds {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.galeria-cond {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
}

.galeria-cond-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--neutral-gray);
    letter-spacing: 0.5px;
}

.galeria-cond-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.galeria-reqs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.galeria-reqs li {
    margin-bottom: 6px;
    color: var(--neutral-gray);
}

.creditos-nav-prev,
.creditos-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.creditos-nav-prev { left: -20px; }
.creditos-nav-next { right: -20px; }

/* Thumbnails */
.creditos-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: thin;
}

.galeria-thumb {
    /* --thumb-rgb se setea inline por slide en JS con el color del crédito */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(var(--thumb-rgb, 40, 190, 70), 0.08);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    color: rgb(var(--thumb-rgb, 40, 190, 70));
}

.galeria-thumb:hover {
    background: rgba(var(--thumb-rgb, 40, 190, 70), 0.18);
    border-color: rgba(var(--thumb-rgb, 40, 190, 70), 0.3);
}

.galeria-thumb.active {
    background: rgb(var(--thumb-rgb, 40, 190, 70));
    color: var(--white);
    border-color: rgb(var(--thumb-rgb, 40, 190, 70));
    box-shadow: 0 4px 12px rgba(var(--thumb-rgb, 40, 190, 70), 0.4);
}

.galeria-thumb-num {
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.galeria-thumb:not(.active) .galeria-thumb-num {
    background: rgba(var(--thumb-rgb, 40, 190, 70), 0.18);
    color: rgb(var(--thumb-rgb, 40, 190, 70));
}

.galeria-thumb-name {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .galeria-slide {
        flex-direction: column;
        min-height: auto;
    }

    .galeria-slide-left {
        width: 100%;
        min-width: auto;
        padding: 24px;
        flex-direction: row;
        gap: 16px;
    }

    .galeria-slide-number {
        font-size: 2rem;
        position: static;
    }

    .galeria-slide-icon {
        font-size: 2rem;
    }

    .galeria-slide-right {
        padding: 20px;
    }

    .creditos-nav-prev,
    .creditos-nav-next {
        display: none;
    }

    .galeria-thumb-name {
        display: none;
    }

    .galeria-thumb {
        padding: 6px 10px;
    }
}

/* ===== ESTADÍSTICAS (legacy) ===== */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--neutral-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* .hero-section ya se controla mas arriba con 100dvh y descuento de barras */

    .stats-bar-number {
        font-size: 2.2rem;
    }

    .stats-bar-label {
        font-size: 0.7rem;
    }

    .stats-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 12px 8px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .credito-grid-header {
        height: 150px;
    }
    
    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
    
    .bottom-nav {
        display: none;
    }
}

/* Utilidades */
.opacity-90 {
    opacity: 0.9;
}

.rounded-xl {
    border-radius: 16px;
}

.cursor-pointer {
    cursor: pointer;
}