/* Layout for Servicios de Ahorro circles to keep them in a single row on desktop */
.servicios-circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .servicios-circles {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .servicios-circles {
        grid-template-columns: repeat(4, 1fr);
    }
}

.servicios-circles .circle-item {
    width: auto;
    justify-self: center;
}
@media (min-width: 1024px) {
    .servicios-circles {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}
/* ================================
     HERO SLIDER PRINCIPAL
     ================================ */
.hero-slider {
    width: 100%;
    height: 700px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; 
    margin: 0 0 -70px 0;
    padding: 30px 0;
}
.hero-slides {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    border-radius: 24px;
    overflow: hidden;    
}
.hero-slide.active {
    display: flex;
    opacity: 1;
    z-index: 2;
}
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    display: block;
    transform: translateZ(0);
}

/* Slide 1 (edificio) - usar cover y ancho completo para llenar como los demás */
#slide-1 .hero-slide-img {
    width: 90%;
    object-fit: cover;
    height: 100%;
}

/* Slide 2 (alianza-uth) - mismo tamaño que slide 1 */
#slide-2 .hero-slide-img {
    width: 80%;
    object-fit: cover;
    height: 100%;
}

/* Slide 3 (horarios) */
#slide-3 .hero-slide-img {
    width: 80%;
    object-fit: cover;
    height: 100%;
}

.hero-slide-img.slide-contain {
    object-fit: contain;
    object-position: center center;
    background-color: var(--color-white);
}

/* Slide 4 - Convocatoria: marco cuadrado centrado */
#slide-4 .hero-square-frame {
    height: 90%;
    max-height: 100%;
    max-width: 92%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

#slide-4 .hero-slide-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.hero-overlay-text {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    color: #fff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    font-weight: 10;
    letter-spacing: 1px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay-text h1 {
    font-size: 72px;
    margin: 0;
    line-height: 1;
}

@media (max-width: 900px) {
    .hero-slider {
        height: 500px;
        margin: 0 0 -70px 0;
    }
    .hero-overlay-text h1 {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 420px;
        margin: 0 0 -60px 0;
    }
    .hero-overlay-text h1 {
        font-size: 36px;
    }
}

/* ================================
   SLIDE 3: FILIALES
   ================================ */
.filiales-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    color: #fff;
    gap: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 15px 40px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.2);
}

.filiales-slide-left {
    flex: 1;
    font-size: 26px; /* Aumentado de 21px */
    font-weight: 400;
}

.filiales-slide-left h2 {
    font-size: 52px; /* Aumentado de 44px */
    margin-bottom: 28px; /* Aumentado */
    font-weight: 900;
}

.filiales-slide-left p {
    margin: 20px 0; /* Aumentado */
    font-size: 28px; /* Aumentado de 23px */
}

.filiales-slide-left strong {
    font-weight: 700;
}

.filiales-slide-left h2 {
    font-size: 36px; /* Aumentado de 28px */
    margin-bottom: -8px;
    font-weight: 900;
}

.filiales-slide-left p {
    margin: 20px 0; /* Aumentado */
    font-size: 28px; /* Aumentado para consistencia */
}

.filiales-slide-left strong {
    font-weight: 700;
}

.filiales-slide-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Aumentado de 24px */
}

.filiales-slide-email {
    width: 100%;
    background-color: #686767;
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
                0 8px 20px rgba(0, 0, 0, 0.2);
}

.email-icon {
    font-size: 48px; /* Aumentado de 36px */
}

.email-text {
    font-size: 28px; /* Aumentado de 21px */
    font-weight: 600;
    flex: 1;
}

.filiales-slide-img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                0 10px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.filiales-slide-whatsapp {
    background-color: #6db33f;
    color: #fff;
    border-radius: 16px;
    padding: 26px 32px;
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.whatsapp-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px; /* Aumentado de 16px */
    font-size: 40px; /* Aumentado de 32px */
    font-weight: 900;
}

.whatsapp-icon {
    font-size: 48px; /* Aumentado de 36px */
}

.whatsapp-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.filiales-slide-whatsapp .whatsapp-img {
    width: 44px; /* Aumentado de 34px */
    height: 44px; /* Aumentado de 34px */
    display: inline-block;
    vertical-align: middle;
}

.filiales-slide-whatsapp p {
    font-size: 26px; /* Aumentado de 21px */
    font-weight: 400;
    margin-top: 12px; /* Aumentado de 8px */
}

@media (max-width: 900px) {
    .filiales-slide-content {
        flex-direction: column;
        padding: 28px; /* Aumentado */
    }
    .filiales-slide-left h2 {
        font-size: 38px; /* Aumentado de 32px */
    }
    .filiales-slide-left p {
        font-size: 22px; /* Aumentado de 18px */
    }
    .filiales-slide-img {
        max-width: 100%;
    }
    .email-text {
        font-size: 20px;
    }
    .whatsapp-num {
        font-size: 32px;
    }
}

/* Ajuste: mover el bloque de filiales hacia arriba (alinear al inicio) */
.filiales-slide-content {
    align-items: flex-start;
    padding: 8px 32px 16px 32px;
    justify-content: center;
}
.filiales-slide-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    text-align: center;
    flex: 0.8;
}
@media (max-width: 900px) {
    .hero-slider, .hero-slides, .hero-slide, .hero-slide-img {
        height: 500px;
    }
    .hero-slider {
        margin: 0 0 -70px 0;
    }
}

/* Controles de navegación del slider */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px; /* Aumentado de 44px */
    height: 50px; /* Aumentado de 44px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-size: 24px; /* Agregado para botones más grandes */
}
.hero-prev { left: 16px; } /* Aumentado de 12px */
.hero-next { right: 16px; } /* Aumentado de 12px */

.hero-indicators {
    display: none !important;
}
.hero-indicators .dot {
    display: none;
}
.hero-indicators .dot.active {
    display: none;
}

/* ================================
   VARIABLES Y CONFIGURACIÓN GLOBAL
   ================================ */
:root {
    /* Colores basados en FINACOOP */
    --color-primary: #0066a1; /* Azul principal */
    --color-secondary: #6db33f; /* Verde */
    --color-header: #d3d5d8; /* Gris menos claro para header y footer */
    --color-dark: #0066a1;
    --color-light: #ecf0f1;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-gray: #7f8c8d;
    --color-dark-blue: #0066a1; /* Azul principal para la barra de acción */
    
    /* Tipografía */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    
    /* Espaciado */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 48px;
    --spacing-xl: 64px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ================================
   ESTILOS GLOBALES
   ================================ */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Tamaño base fijo */
    -webkit-text-size-adjust: 100%; /* Previene ajuste automático en móviles */
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Ajuste para header fijo */
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white); /* Cambiado a blanco */
    margin: 0;
    padding: 0;
    min-width: 320px; /* Ancho mínimo para evitar problemas */
}

main {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* ================================
   HEADER Y NAVEGACIÓN
   ================================ */
.header {
    background-color: var(--color-header);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 6px 0;
    overflow: visible;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* Hamburger Menu - Hidden by default (shown in mobile via responsive.css) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #2c5aa0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay - Hidden by default */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 100px;
    margin-top: -13px;
    margin-left: 0px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1001;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    min-width: 220px;
}

.logo-link:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), 0 6px 16px rgba(0, 0, 0, 0.15);
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05) contrast(0.98);
    mix-blend-mode: multiply;
}

.slogan {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin: 4px 0 0 0;
    display: none;
}

/* Navigation Styles */
.nav {
    flex: 1;
    margin-left: -80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #0066a1;
    padding: 8px 12px;
    display: block;
    font-weight: var(--font-weight-bold);
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 6px;
}

.nav-link.active {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 6px;
}

.dropdown-arrow {
    font-size: 14px;
    margin-left: 3px;
}

.nav-item-dropdown {
    position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-header);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    min-width: 200px;
    z-index: 1001;
    border-radius: 8px;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-link {
    text-decoration: none;
    color: #0066a1;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    font-size: 11.5px;
    font-weight: var(--font-weight-bold);
}

.dropdown-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding-left: 17px;
}

.dropdown-link.active {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #004d7a 100%);
    padding: 1rem 0;
    min-height: auto;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 0.5fr;
    gap: 0.75rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* separar la imagen de la esquina izquierda */
    margin-left: 4rem;
}

.hero-nav-btn {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
}

.hero-nav-btn:hover {
    background-color: var(--color-white);
    transform: scale(1.1);
}

.hero-image-container {
    width: 100%;
    max-width: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    /* levantar la imagen para que sobresalga desde la barra */
    margin-top: -40px;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.hero-image.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-right {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: flex-start;
}

.hero-text-content {
    padding: 0;
}

.hero-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
    color: #0066a1;
}

.hero-subtitle {
    font-size: 0.75rem;
    margin: 0;
    color: var(--color-text);
}

.hero-cta-box {
    background-color: var(--color-secondary);
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
}

.hero-cta-text {
    font-size: 0.75rem;
    margin: 0 0 0.5rem 0;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.hero-cta-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background-color: #004d7a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================================
   ACTION BAR
   ================================ */
.action-bar {
    background-color: transparent;
    padding: 0;
    position: relative;
    margin-top: -55px;
    z-index: 15;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 20px;
    background-color: var(--color-dark-blue);
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.action-btn {
    background-color: var(--color-dark-blue);
    border: none;
    color: var(--color-white);
    padding: 16px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    position: relative;
}

.action-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
}

.action-btn:hover .action-icon {
    transform: scale(1.15);
}

.action-icon {
    font-size: 36px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.action-icon svg {
    display: block;
    width: 36px;
    height: 36px;
}

.action-label {
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    line-height: 1.2;
}

.action-bar .action-btn:last-child {
    background-color: var(--color-dark-blue);
}

.action-bar .action-btn:last-child:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: 60px 0; /* Aumentado de 50px */
    background-color: var(--color-white);
}

.services-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* Aumentado de 40px */
    align-items: center; /* Centrar verticalmente */
}

/* Columna de Información */
.services-info-column {
    display: flex;
    flex-direction: column;
    gap: 35px; /* Aumentado de 30px */
}

.info-card {
    border-radius: 16px;
    padding: 50px; /* Aumentado de 40px */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.primary-card {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    color: var(--color-white);
}

.primary-card h2 {
    font-size: 48px; /* Aumentado de 36px */
    font-weight: 900;
    margin: 0 0 25px 0;
    color: var(--color-white);
}

.primary-card p {
    font-size: 22px; /* Aumentado de 18px */
    line-height: 1.6;
    margin: 0;
    color: var(--color-white);
}

.secondary-card {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 30px; /* Aumentado de 25px */
    padding: 40px; /* Aumentado de 30px */
}

.anniversary-badge {
    flex-shrink: 0;
}

.badge-logo {
    width: 140px; /* Aumentado de 120px */
    height: 140px; /* Aumentado de 120px */
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.anniversary-text h3 {
    font-size: 24px; /* Aumentado de 20px */
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: var(--color-white);
}

/* Columna de Imágenes */
.services-images-column {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrar verticalmente */
}

.image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: auto;
    min-height: 400px; /* Altura mínima más grande */
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .primary-card h2 {
        font-size: 36px;
    }
    
    .primary-card p {
        font-size: 20px;
    }
    
    .anniversary-text h3 {
        font-size: 22px;
    }
    
    .service-image {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .services {
        padding: 50px 0;
    }
    
    .info-card {
        padding: 30px;
    }
    
    .secondary-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .badge-logo {
        width: 100px;
        height: 100px;
    }
    
    .primary-card h2 {
        font-size: 28px;
    }
    
    .primary-card p {
        font-size: 18px;
    }
    
    .anniversary-text h3 {
        font-size: 18px;
    }
    
    .service-image {
        min-height: 250px;
    }
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background-color: #5a9433;
    color: var(--color-white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer-logo img {
    width: 260px;
    height: auto;
    display: block;
}

/* Columns Section */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
    text-decoration: underline;
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 18px;
}

.contact-info svg {
    flex-shrink: 0;
    opacity: 0.9;
}

/* Social Icons - OCULTO (ya están en sidebar) */
.footer-social-inline {
    display: none !important;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #4a7d2a;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}

/* ================================
   PAGE HEADER
   ================================ */
.page-header {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================
   MAPA DE FILIALES
   ================================ */
.mapa-filiales-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.mapa-filiales-container {
    text-align: center;
}

.mapa-filiales-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mapa-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.mapa-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mapa-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* ================================
   HISTORY SECTION
   ================================ */
.history-section {
    padding: 60px 0 100px;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.history-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.history-block h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0066a1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.history-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.history-block strong {
    color: #0066a1;
    font-weight: 700;
}

.history-image {
    position: sticky;
    top: 120px;
}

.building-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: block;
}

.image-caption {
    margin-top: 20px;
    text-align: center;
}

.image-caption h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0066a1;
    margin: 0 0 8px 0;
}

.image-caption p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive History Section */
@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 48px;
    }
    
    .history-content {
        gap: 50px;
    }
    
    .history-block h2 {
        font-size: 28px;
    }
    
    .history-block p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 40px;
    }
    
    .mapa-filiales-section {
        padding: 40px 0;
    }
    
    .mapa-filiales-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .mapa-image {
        padding: 0 15px;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-image {
        position: static;
        order: -1;
    }
    
    .history-block h2 {
        font-size: 26px;
    }
    
    .history-block p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .history-section {
        padding: 40px 0 60px;
    }
    
    .history-text {
        gap: 30px;
    }
    
    .history-block h2 {
        font-size: 24px;
    }
    
    .history-block p {
        font-size: 15px;
    }
}

/* ================================
   MISSION VISION SECTION
   ================================ */
.mission-vision-section {
    padding: 60px 0 100px;
}

.mv-card {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mv-card-header {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    padding: 40px;
    text-align: center;
    color: #fff;
}

.mv-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mission-icon svg {
    color: #fff;
}

.vision-icon svg {
    color: #fff;
}

.mv-card-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 3px;
}

.mv-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
    align-items: center;
}

.mv-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin: 0;
}

.mv-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mv-img:hover {
    transform: scale(1.05);
}

/* Vision card - image on left */
.vision-card .mv-card-header {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
}

/* Values Section */
.values-section {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
}

.values-title {
    font-size: 48px;
    font-weight: 900;
    color: #0066a1;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    color: #fff;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0066a1;
    margin: 0 0 15px 0;
}

.value-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Mission Vision */
@media (max-width: 1024px) {
    .mv-card-header h2 {
        font-size: 40px;
    }
    
    .mv-card-content {
        gap: 40px;
        padding: 40px;
    }
    
    .mv-text p {
        font-size: 18px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mv-card-header {
        padding: 30px;
    }
    
    .mv-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .mv-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }
    
    .mv-card-header h2 {
        font-size: 36px;
    }
    
    .mv-card-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .mv-text p {
        font-size: 17px;
    }
    
    .values-section {
        padding: 40px 30px;
    }
    
    .values-title {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .mission-vision-section {
        padding: 40px 0 60px;
    }
    
    .mv-card {
        margin-bottom: 40px;
    }
    
    .mv-card-header {
        padding: 25px;
    }
    
    .mv-card-header h2 {
        font-size: 28px;
    }
    
    .mv-card-content {
        padding: 25px;
    }
    
    .mv-text p {
        font-size: 16px;
    }
    
    .values-title {
        font-size: 28px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-card h3 {
        font-size: 20px;
    }
}

/* ================================
   VALORES SECTION
   ================================ */
.valores-section {
    padding: 60px 0 100px;
}

.valores-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.valores-intro p {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.valores-grid .valor-card {
    grid-column: span 2;
}

.valores-grid .valor-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.valores-grid .valor-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.valor-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.valor-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.valor-icon svg {
    color: #fff;
}

.valor-card h3 {
    font-size: 32px;
    font-weight: 900;
    color: #0066a1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.valor-card p {
    font-size: 17px;
    color: #555;
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

/* Responsive Valores */
@media (max-width: 1024px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .valores-intro p {
        font-size: 20px;
    }
    
    .valor-card {
        padding: 40px 30px;
    }
    
    .valor-card h3 {
        font-size: 28px;
    }
    
    .valor-card p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .valores-section {
        padding: 40px 0 60px;
    }
    
    .valores-intro {
        margin-bottom: 40px;
    }
    
    .valores-intro p {
        font-size: 18px;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .valores-grid .valor-card {
        grid-column: auto;
    }
    
    .valores-grid .valor-card:nth-child(4),
    .valores-grid .valor-card:nth-child(5) {
        grid-column: auto;
    }
    
    .valor-icon {
        width: 100px;
        height: 100px;
    }
    
    .valor-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .valor-card h3 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .valores-intro p {
        font-size: 16px;
    }
    
    .valor-card {
        padding: 35px 25px;
    }
    
    .valor-card h3 {
        font-size: 24px;
    }
    
    .valor-card p {
        font-size: 16px;
    }
}

/* ================================
   ACTIVOS EVENTUALES SECTION
   ================================ */
.activos-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 102, 161, 0.3);
}

.intro-icon svg {
    color: #fff;
}

.intro-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0066a1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.intro-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

/* Featured Section */
.activos-featured {
    padding: 30px 0;
}

.featured-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.featured-header {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    padding: 24px;
    text-align: center;
    color: #fff;
}

.featured-header h2 {
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 8px 0;
}

.featured-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

.featured-image-wrapper {
    position: relative;
    padding: 24px;
    background: #f8f9fa;
}

.featured-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.featured-img:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 60px;
    right: 60px;
}

.zoom-btn {
    background: #0066a1;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 102, 161, 0.4);
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: #004d7a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 161, 0.5);
}

.zoom-btn svg {
    width: 24px;
    height: 24px;
}

/* Info Cards */
.activos-info {
    padding: 30px 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card-activos {
    background: #fff;
    padding: 40px 32px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card-activos:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.info-icon-activos {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-activos svg {
    color: #fff;
    width: 35px;
    height: 35px;
}

.info-card-activos h3 {
    font-size: 22px;
    font-weight: 900;
    color: #0066a1;
    margin: 0 0 16px 0;
}

.info-card-activos p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* CTA Section */
.activos-cta {
    padding: 30px 0;
}

.cta-card {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 102, 161, 0.25);
    max-width: 1100px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 12px 0;
}

.cta-card > p {
    font-size: 14px;
    margin: 0 0 24px 0;
    opacity: 0.95;
}

.cta-emails {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.email-link {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    cursor: text;
    user-select: text;
}

.email-link span {
    user-select: text;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Location Button */
.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.location-btn:hover {
    background-color: #4d7d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.location-btn svg {
    flex-shrink: 0;
}

.cta-phones {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-phones p {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.phone-grid {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: #ffffff;
     padding: 12px 20px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     font-size: 15px;
     margin-top: 15px;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Modal */
.modal-activos {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-content-activos {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #0066a1;
}

/* Responsive Activos */
@media (max-width: 1024px) {
    .intro-content h2 {
        font-size: 36px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .activos-intro {
        padding: 40px 0;
    }
    
    .intro-content h2 {
        font-size: 32px;
    }
    
    .intro-content p {
        font-size: 18px;
    }
    
    .activos-featured,
    .activos-info,
    .activos-cta {
        padding: 50px 0;
    }
    
    .featured-image-wrapper {
        padding: 20px;
    }
    
    .image-overlay {
        position: static;
        margin-top: 20px;
        text-align: center;
    }
    
    .zoom-btn {
        display: inline-flex;
    }
    
    .cta-card {
        padding: 40px 30px;
    }
    
    .cta-card h2 {
        font-size: 32px;
    }
    
    .phone-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .intro-icon {
        width: 100px;
        height: 100px;
    }
    
    .intro-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .intro-content h2 {
        font-size: 28px;
    }
    
    .intro-content p {
        font-size: 16px;
    }
    
    .featured-header {
        padding: 30px 20px;
    }
    
    .featured-header h2 {
        font-size: 28px;
    }
    
    .cta-card h2 {
        font-size: 26px;
    }
    
    .cta-card > p {
        font-size: 17px;
    }
    
    .modal-close {
        top: 15px;
        right: 25px;
        font-size: 40px;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-logo img {
        width: 150px;
    }
    
    .social-icons {
        gap: 20px;
    }
}

/* ================================
   PRODUCTOS PAGE - CUENTAS DE AHORRO
   ================================ */

/* Afiliación Section */
.productos-afiliacion {
    padding: 30px 0;
    background: #f8f9fa;
}

.productos-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.productos-header {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    padding: 24px;
    text-align: center;
}

.productos-header h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.productos-content {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    padding: 28px 36px;
    align-items: center;
}

.productos-text h3 {
    font-size: 20px;
    font-weight: 900;
    color: #333;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.text-highlight {
    color: #0066a1;
}

.requisitos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requisitos-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.requisitos-list li svg {
    flex-shrink: 0;
    color: #6db33f;
    margin-top: 2px;
}

.productos-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: transparent;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Servicios Section */
.productos-servicios {
    padding: 30px 0;
    background: #fff;
}

.servicios-intro {
    text-align: center;
    margin-bottom: 24px;
}

.servicios-intro h2 {
    font-size: 26px;
    font-weight: 900;
    color: #0066a1;
    margin: 0 0 8px 0;
}

.servicios-intro p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.servicios-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.circle-item {
    text-align: center;
}

.circle-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-item p {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Cuentas Cards */
.productos-cuenta {
    padding: 20px 0;
}

.productos-cuenta:nth-child(odd) {
    background: #f8f9fa;
}

.productos-cuenta:nth-child(even) {
    background: #fff;
}

.cuenta-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.cuenta-header {
    padding: 18px 36px;
    text-align: center;
}

.cuenta-azul .cuenta-header {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
}

.cuenta-verde .cuenta-header {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
}

.cuenta-header h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.cuenta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 32px;
    align-items: center;
}

.cuenta-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cuenta-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-weight: 400;
    text-align: justify;
}

.cuenta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cuenta-image .image-placeholder {
    max-width: 85%;
}

/* Responsive Productos */
@media (max-width: 1024px) {
    .productos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .servicios-circles {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .circle-image {
        width: 250px;
        height: 250px;
    }
    
    .cuenta-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .productos-afiliacion {
        padding: 40px 0;
    }
    
    .productos-header {
        padding: 30px 20px;
    }
    
    .productos-header h2 {
        font-size: 28px;
    }
    
    .productos-content {
        padding: 30px 20px;
    }
    
    .productos-text h3 {
        font-size: 22px;
    }
    
    .requisitos-list li {
        font-size: 16px;
    }
    
    .servicios-intro h2 {
        font-size: 32px;
    }
    
    .servicios-intro p {
        font-size: 18px;
    }
    
    .circle-image {
        width: 220px;
        height: 220px;
    }
    
    .cuenta-header h2 {
        font-size: 26px;
    }
    
    .cuenta-content {
        padding: 30px 20px;
    }
    
    .cuenta-text p {
        font-size: 17px;
    }
}

/* ================================
   DERECHOS Y OBLIGACIONES SECTION
   ================================ */
.derechos-obligaciones-section {
    padding: 60px 0 100px;
}

.do-card {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.do-header {
    padding: 50px 40px;
    text-align: center;
    color: #fff;
}

.derechos-card .do-header {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
}

.obligaciones-card .do-header {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
}

.do-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.do-icon svg {
    color: #fff;
}

.do-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.do-content {
    padding: 50px 40px;
}

.do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.obligaciones-card .do-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
}

.obligaciones-card .do-item:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
}

.obligaciones-card .do-item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

.do-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.do-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.do-number {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
}

.obligaciones-card .do-number {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
}

.do-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.do-image-placeholder {
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.do-image-placeholder:hover {
    transform: none;
    box-shadow: none;
}

.do-illustration {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 16px;
    object-fit: contain;
}

/* Responsive Derechos y Obligaciones */
@media (max-width: 1024px) {
    .do-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .do-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .derechos-obligaciones-section {
        padding: 40px 0 60px;
    }
    
    .do-card {
        margin-bottom: 40px;
    }
    
    .do-header {
        padding: 40px 30px;
    }
    
    .do-icon {
        width: 100px;
        height: 100px;
    }
    
    .do-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .do-header h2 {
        font-size: 28px;
    }
    
    .do-content {
        padding: 35px 25px;
    }
    
    .do-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .do-number {
        margin-bottom: 10px;
    }
    
    .do-item p {
        font-size: 15px;
    }
    
    .do-illustration {
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .do-header h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .do-item p {
        font-size: 14px;
    }
    
    .do-illustration {
        max-width: 250px;
    }
}

@media (max-width: 600px) {
    .productos-header h2 {
        font-size: 24px;
    }
    
    .productos-text h3 {
        font-size: 20px;
    }
    
    .requisitos-list li {
        font-size: 15px;
    }
    
    .servicios-intro h2 {
        font-size: 28px;
    }
    
    .circle-image {
        width: 200px;
        height: 200px;
    }
    
    .circle-item p {
        font-size: 18px;
    }
    
    .cuenta-header {
        padding: 25px 20px;
    }

/* ================================
   DEPÓSITOS A PLAZO FIJO PAGE
   ================================ */

/* Page Header */
.page-header-plazo {
    background: linear-gradient(135deg, var(--color-primary) 0%, #004d7a 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 161, 0.2);
}

.page-header-plazo h1 {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Main Section */
.depositos-plazo-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafb 0%, #ffffff 50%, #f8fafb 100%);
}

/* Hero Card */
.plazo-hero-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 102, 161, 0.1);
    margin-bottom: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plazo-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 102, 161, 0.15);
}

.plazo-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px;
}

.plazo-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plazo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #5a9433 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 6px 30px rgba(109, 179, 63, 0.3);
    margin-bottom: 10px;
}

.plazo-hero-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

.plazo-description {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.plazo-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plazo-image-container {
    width: 100%;
    max-width: 450px;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.05) 0%, rgba(109, 179, 63, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 3px dashed rgba(0, 102, 161, 0.2);
    position: relative;
}

.plazo-image-container::before {
    content: "Imagen del Producto";
    position: absolute;
    color: rgba(0, 102, 161, 0.4);
    font-size: 18px;
    font-weight: 600;
}

.plazo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Benefits Section */
.plazo-benefits-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0, 102, 161, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 161, 0.15);
    border-color: var(--color-secondary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0080c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #5a9433 100%);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 15px 0;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Info Section */
.plazo-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.02) 0%, rgba(109, 179, 63, 0.02) 100%);
    border: 2px solid rgba(0, 102, 161, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: white;
    border-color: var(--color-secondary);
    box-shadow: 0 10px 40px rgba(0, 102, 161, 0.1);
    transform: translateY(-5px);
}

.info-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #5a9433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 25px rgba(109, 179, 63, 0.3);
}

.info-box h3 {
    font-size: 26px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 20px 0;
}

.info-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.plazo-cta-section {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #004d7a 100%);
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 102, 161, 0.2);
}

.cta-box {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-box p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 40px 0;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: white;
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .plazo-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }
    
    .plazo-hero-text {
        text-align: center;
        align-items: center;
    }
    
    .plazo-icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-header-plazo h1 {
        font-size: 36px;
    }
    
    .depositos-plazo-section {
        padding: 50px 0;
    }
    
    .plazo-hero-content {
        padding: 40px 30px;
    }
    
    .plazo-hero-text h2 {
        font-size: 28px;
    }
    
    .plazo-description {
        font-size: 18px;
    }
    
    .plazo-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .plazo-image-container {
        height: 280px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .plazo-info-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 50px 0;
    }
    
    .info-box {
        padding: 40px 30px;
    }
    
    .plazo-cta-section {
        padding: 50px 0;
        margin-top: 50px;
    }
    
    .cta-box h2 {
        font-size: 32px;
    }
    
    .cta-box p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 35px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .page-header-plazo {
        padding: 40px 0;
    }
    
    .page-header-plazo h1 {
        font-size: 28px;
    }
    
    .plazo-hero-content {
        padding: 30px 20px;
    }
    
    .plazo-hero-text h2 {
        font-size: 24px;
    }
    
    .plazo-description {
        font-size: 16px;
    }
    
    .plazo-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .plazo-icon-wrapper svg {
        width: 60px;
        height: 60px;
    }
    
    .plazo-image-container {
        height: 220px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .benefit-card p {
        font-size: 15px;
    }
    
    .info-box {
        padding: 30px 20px;
    }
    
    .info-box h3 {
        font-size: 22px;
    }
    
    .info-box p {
        font-size: 15px;
    }
    
    .cta-box h2 {
        font-size: 26px;
    }
    
    .cta-box p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* ================================
   PRÉSTAMOS PAGE
   ================================ */

/* Page Header */
.page-header-prestamos {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    padding: 70px 0;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 161, 0.2);
}

.page-header-prestamos h1 {
    margin: 0 0 15px 0;
    font-size: 52px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 22px;
    margin: 0;
    opacity: 0.95;
}

/* Main Section */
.prestamos-tipos-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafb 0%, #ffffff 50%, #f8fafb 100%);
}

/* Intro Icons */
.prestamos-intro-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.prestamo-tipo-icon {
    text-align: center;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prestamo-tipo-icon:hover {
    transform: translateY(-10px);
}

.prestamo-tipo-icon .icon-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.prestamo-tipo-icon:hover .icon-circle {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.prestamo-tipo-icon .icon-label {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Prestamo Simple Cards - Matching Cuenta de Aportaciones Style */
.prestamo-simple-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.prestamo-simple-header {
    padding: 20px 40px;
    text-align: center;
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
}

.prestamo-simple-header h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    margin: 0;
}

.prestamo-simple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 30px 35px;
    align-items: center;
}

.prestamo-simple-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prestamo-simple-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

.prestamo-simple-text h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-primary);
    margin: 15px 0 10px 0;
}

.prestamo-simple-text ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.prestamo-simple-text ul li {
    font-size: 16px;
    color: #333;
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.prestamo-simple-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
}

.prestamo-simple-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prestamo-simple-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* Prestamo Cards - Old Style (keeping for backward compatibility) */
.prestamo-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 102, 161, 0.1);
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.prestamo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 102, 161, 0.15);
}

.prestamo-header {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    padding: 25px 50px;
    color: white;
}

.prestamo-header h2 {
    margin: 0;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.prestamo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
    align-items: center;
}

.prestamo-reverse {
    grid-template-columns: 1fr 1fr;
}

.prestamo-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 20px 0;
}

.prestamo-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

/* Requisitos Box */
.requisitos-box {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.03) 0%, rgba(109, 179, 63, 0.03) 100%);
    border-left: 5px solid var(--color-secondary);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.requisitos-box h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 15px 0;
}

.requisitos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requisitos-list li {
    font-size: 16px;
    color: #555;
    padding: 10px 0;
    padding-left: 0;
    position: relative;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.requisitos-list li svg {
    flex-shrink: 0;
    color: var(--color-secondary);
    margin-top: 2px;
}

/* Propositos Box */
.propositos-box {
    background: linear-gradient(135deg, rgba(109, 179, 63, 0.05) 0%, rgba(90, 148, 51, 0.05) 100%);
    border-left: 5px solid var(--color-secondary);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 25px;
}

.propositos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.propositos-list li {
    font-size: 17px;
    color: #555;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.propositos-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 22px;
}

/* Prestamo Image */
.prestamo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prestamo-image img {
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.prestamo-image img:hover {
    transform: scale(1.03);
}

/* CTA Section */
.prestamos-cta-section {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #5a9433 100%);
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(109, 179, 63, 0.3);
}

.prestamos-cta-section .cta-box h2 {
    color: white;
}

.prestamos-cta-section .cta-box p {
    color: white;
}

.prestamos-cta-section .btn-primary {
    background: white;
    color: var(--color-secondary);
}

.prestamos-cta-section .btn-primary:hover {
    background: var(--color-primary);
    color: white;
}

.prestamos-cta-section .btn-secondary {
    border-color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .prestamos-intro-icons {
        gap: 60px;
    }
    
    .prestamo-tipo-icon .icon-circle {
        width: 180px;
        height: 180px;
    }
    
    .prestamo-tipo-icon .icon-circle svg {
        width: 70px;
        height: 70px;
    }
    
    .prestamo-content,
    .prestamo-reverse {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px;
    }
    
    .prestamo-image img {
        height: 300px;
    }
    
    .prestamo-simple-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .prestamo-simple-text p {
        font-size: 17px;
    }
    
    .prestamo-simple-image img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .page-header-prestamos {
        padding: 50px 0;
    }
    
    .page-header-prestamos h1 {
        font-size: 38px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .prestamos-tipos-section {
        padding: 50px 0;
    }
    
    .prestamos-intro-icons {
        gap: 40px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }
    
    .prestamo-tipo-icon .icon-circle {
        width: 160px;
        height: 160px;
    }
    
    .prestamo-tipo-icon .icon-circle svg {
        width: 60px;
        height: 60px;
    }
    
    .prestamo-tipo-icon .icon-label {
        font-size: 14px;
    }
    
    .prestamo-card {
        margin-bottom: 40px;
    }
    
    .prestamo-simple-card {
        margin-bottom: 40px;
    }
    
    .prestamo-simple-header {
        padding: 25px 30px;
    }
    
    .prestamo-simple-header h2 {
        font-size: 30px;
    }
    
    .prestamo-simple-content {
        padding: 35px 30px;
        gap: 25px;
    }
    
    .prestamo-simple-text p {
        font-size: 16px;
    }
    
    .prestamo-simple-text h3 {
        font-size: 20px;
    }
    
    .prestamo-simple-text ul li {
        font-size: 15px;
        padding: 6px 0;
        padding-left: 22px;
    }
    
    .prestamo-simple-image img {
        max-height: 300px;
    }
    
    .prestamo-header {
        padding: 20px 30px;
    }
    
    .prestamo-header h2 {
        font-size: 30px;
    }
    
    .prestamo-content,
    .prestamo-reverse {
        padding: 30px 25px;
        gap: 25px;
    }
    
    .prestamo-text h3 {
        font-size: 20px;
    }
    
    .prestamo-description {
        font-size: 16px;
    }
    
    .requisitos-box,
    .propositos-box {
        padding: 20px 25px;
    }
    
    .requisitos-box h3 {
        font-size: 19px;
    }
    
    .requisitos-list li,
    .propositos-list li {
        font-size: 15px;
        padding: 8px 0;
        padding-left: 25px;
    }
    
    .prestamo-image img {
        height: 250px;
    }
    
    .prestamos-cta-section {
        padding: 50px 0;
        margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .page-header-prestamos {
        padding: 40px 0;
    }
    
    .page-header-prestamos h1 {
        font-size: 30px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .prestamos-intro-icons {
        gap: 30px;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .prestamo-tipo-icon .icon-circle {
        width: 140px;
        height: 140px;
    }
    
    .prestamo-tipo-icon .icon-circle svg {
        width: 55px;
        height: 55px;
    }
    
    .prestamo-tipo-icon .icon-label {
        font-size: 13px;
    }
    
    .prestamo-simple-header {
        padding: 20px 25px;
    }
    
    .prestamo-simple-header h2 {
        font-size: 26px;
    }
    
    .prestamo-simple-content {
        padding: 30px 25px;
        gap: 20px;
    }
    
    .prestamo-simple-text p {
        font-size: 15px;
    }
    
    .prestamo-simple-text h3 {
        font-size: 18px;
        margin: 10px 0 8px 0;
    }
    
    .prestamo-simple-text ul li {
        font-size: 14px;
        padding: 5px 0;
        padding-left: 20px;
    }
    
    .prestamo-simple-image img {
        max-height: 250px;
        border-radius: 12px;
    }
    
    .prestamo-header {
        padding: 18px 25px;
    }
    
    .prestamo-header h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .prestamo-content,
    .prestamo-reverse {
        padding: 25px 20px;
    }
    
    .prestamo-text h3 {
        font-size: 18px;
    }
    
    .prestamo-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .requisitos-box,
    .propositos-box {
        padding: 18px 20px;
    }
    
    .requisitos-list li,
    .propositos-list li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 22px;
    }
    
    .prestamo-image img {
        height: 200px;
    }
}
    
    .cuenta-header h2 {
        font-size: 22px;
    }
}

/* ================================
     SOCIAL SIDEBAR FLOTANTE
     ================================ */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 75%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-sidebar-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
}

.social-sidebar-btn:hover {
    transform: translateX(-5px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
}

.social-sidebar-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.social-sidebar-btn.facebook {
    background: #1877f2;
    border-radius: 10px 0 0 0;
}

.social-sidebar-btn.facebook:hover {
    background: #145dbf;
}

.social-sidebar-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-sidebar-btn.instagram:hover {
    background: linear-gradient(45deg, #d47a2a 0%, #c95a33 25%, #b91f38 50%, #a91c58 75%, #9a1370 100%);
}

.social-sidebar-btn.whatsapp {
    background: #25d366;
}

.social-sidebar-btn.whatsapp:hover {
    background: #1fa855;
}

.social-sidebar-btn.tiktok {
    background: #000000;
    border-radius: 0 0 0 10px;
}

.social-sidebar-btn.tiktok:hover {
    background: #333333;
}

@media (max-width: 768px) {
    .social-sidebar {
        right: 0;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        border-radius: 10px 0 0 10px;
    }
    
    .social-sidebar-btn {
        width: 50px;
        height: 50px;
    }
    
    .social-sidebar-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .social-sidebar-btn.facebook {
        border-radius: 10px 0 0 10px;
    }
    
    .social-sidebar-btn.whatsapp {
        border-radius: 0;
    }
    
    .social-sidebar-btn.tiktok {
        border-radius: 0;
    }
}

/* ================================
     CAT PAGE STYLES
     ================================ */
.cat-section {
    padding: 60px 0;
}

.cat-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cat-text {
    padding-right: 20px;
}

.cat-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.cat-text h2 {
    color: #2b4c8f;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cat-list li {
    padding: 12px 25px 12px 25px;
    line-height: 1.8;
    color: #444;
    border-left: 4px solid #6db33f;
    margin-bottom: 10px;
    background: #f8f9fa;
    text-align: justify;
}

.cat-list li strong {
    color: #2b4c8f;
    margin-right: 8px;
}

.cat-image {
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.cat-image img:hover {
    transform: scale(1.02);
}

/* Responsive CAT */
@media (max-width: 968px) {
    .cat-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cat-text {
        padding-right: 0;
    }
    
    .cat-image {
        position: relative;
        top: 0;
        order: 2;
    }
}

/* ================================
     ESTADOS FINANCIEROS STYLES
     ================================ */
.financial-viewer-section {
    margin-bottom: 80px;
}

.section-title-center {
    font-size: 2rem;
    color: #2b4c8f;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pdf-viewer-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
}

.pdf-viewer {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.mobile-only {
    display: none;
}

.pdf-open-btn {
    margin-top: 12px;
}

.previous-documents-section {
    padding-top: 60px;
    padding-bottom: 80px;
    border-top: 2px solid #e0e0e0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.document-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #2b4c8f;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b4c8f 0%, #1e3a6f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.document-info {
    flex: 1;
}

.document-title {
    font-size: 1.3rem;
    color: #2b4c8f;
    margin-bottom: 8px;
    font-weight: 600;
}

.document-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #6db33f;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-download:hover {
    background: #5a9933;
    transform: scale(1.02);
}

.btn-download svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Botón Flotante de Contacto */
.contact-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    z-index: 999;
    transition: all 0.3s ease;
    animation: float-pulse 2s ease-in-out infinite;
}

.contact-float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.contact-float-btn svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.contact-float-btn span {
    white-space: nowrap;
}

@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ================================
   NOTICIAS PAGE STYLES
   ================================ */
.noticias-section {
    padding: 40px 0 60px;
    background: #f0f2f5;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.noticia-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.noticia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.noticia-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.noticia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.noticia-card:hover .noticia-image img {
    transform: scale(1.05);
}

.noticia-content {
    padding: 16px;
    flex: 1;
    display: flex;
    align-items: center;
}

.noticia-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ver-publicacion-link {
    padding: 12px 16px;
    color: #0066a1;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid #e4e6eb;
    transition: background 0.2s ease, color 0.2s ease;
}

.noticia-card:hover .ver-publicacion-link {
    background: #f8f9fa;
    color: #004d7a;
}

.noticias-info {
    margin-bottom: 30px;
}

.noticias-info code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #d63384;
}

/* Responsive para Noticias */
@media (max-width: 1200px) {
    .noticias-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .noticias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .noticia-image {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .noticia-image {
        height: 220px;
    }
    
    .noticias-section {
        padding: 30px 0 40px;
    }
}

/* Responsive Estados Financieros */
@media (max-width: 768px) {
    .pdf-viewer {
        height: 500px;
    }
    
    .mobile-only {
        display: inline-flex;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-center {
        font-size: 1.6rem;
    }
}
/* ================================
   TRABAJA CON NOSOTROS - FORMULARIO
   ================================ */

/* Page Header - Verde */
/* Button in page header */
.btn-header-enviar-cv {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-header-enviar-cv:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-header-enviar-cv:active {
    transform: translateY(0);
}

/* Enviar CV Card Section */
.enviar-cv-card-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.enviar-cv-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #6db33f;
    width: fit-content;
}

.enviar-cv-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    border-radius: 12px;
    color: #fff;
}

.enviar-cv-icon svg {
    width: 50px;
    height: 50px;
}

.enviar-cv-content {
    flex: 0 1 auto;
}

.enviar-cv-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.enviar-cv-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.btn-enviar-cv-card {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-enviar-cv-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 179, 63, 0.3);
}

.btn-enviar-cv-card:active {
    transform: translateY(0);
}

/* Colaboradores Section */
.colaboradores-section {
    padding: 80px 0;
    text-align: center;
}

.colaboradores-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0066a1;
    margin-bottom: 16px;
}

.colaboradores-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.colaboradores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    min-height: 200px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 20px;
    align-items: center;
    justify-items: center;
}

/* ================================
   MODAL - ENVIAR CV
   ================================ */

.modal-trabaja {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content-trabaja {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-trabaja {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.modal-close-trabaja:hover {
    background: #e0e0e0;
}

/* Modal Header */
.modal-header-trabaja {
    background: linear-gradient(135deg, #6db33f 0%, #5a9433 100%);
    color: #fff;
    padding: 30px;
    border-radius: 16px 16px 0 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.modal-header-trabaja svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.modal-header-trabaja h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.modal-header-trabaja p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Modal Form */
.modal-trabaja-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-trabaja-form .form-group {
    display: flex;
    flex-direction: column;
}

.modal-trabaja-form .form-group:nth-child(3) {
    grid-column: 1 / -1;
}

.modal-trabaja-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-trabaja-form label svg {
    width: 18px;
    height: 18px;
    color: #6db33f;
    flex-shrink: 0;
}

.modal-trabaja-form input,
.modal-trabaja-form select,
.modal-trabaja-form textarea {
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-trabaja-form input:focus,
.modal-trabaja-form select:focus,
.modal-trabaja-form textarea:focus {
    outline: none;
    border-color: #6db33f;
    box-shadow: 0 0 0 3px rgba(109, 179, 63, 0.1);
}

/* File Upload */
.label-file {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border: 2px dashed #6db33f;
    border-radius: 8px;
    background: rgba(109, 179, 63, 0.05);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    color: #6db33f;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}

.label-file:hover {
    background: rgba(109, 179, 63, 0.1);
}

.label-file svg {
    width: 20px;
    height: 20px;
}

#modal-cv {
    display: none;
}

.file-info {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

.form-disclaimer {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

.btn-submit-trabaja {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 16px;
}

.btn-submit-trabaja:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 161, 0.3);
}

.btn-submit-trabaja:active {
    transform: translateY(0);
}

/* Multi-select */
.form-group-full {
    grid-column: 1 / -1;
}

.multiselect-wrapper {
    position: relative;
}

.multiselect-display {
    min-height: 46px;
    padding: 8px 40px 8px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    transition: border-color 0.3s ease;
    position: relative;
    font-size: 14px;
    color: #333;
}

.multiselect-display:hover {
    border-color: #6db33f;
}

.multiselect-display.active {
    border-color: #6db33f;
    box-shadow: 0 0 0 3px rgba(109, 179, 63, 0.1);
}

.multiselect-placeholder {
    color: #999;
    font-size: 14px;
}

.multiselect-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    color: #666;
}

.multiselect-display.active .multiselect-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.multiselect-tag {
    display: inline;
    color: #333;
    font-size: 14px;
}

.multiselect-tag::after {
    content: ", ";
}

.multiselect-tag:last-of-type::after {
    content: "";
}

.multiselect-tag-remove {
    display: none;
}

.multiselect-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.multiselect-dropdown.active {
    display: block;
}

.multiselect-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.multiselect-option:last-child {
    border-bottom: none;
}

.multiselect-option:hover {
    background: #f8f9fa;
}

.multiselect-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0066a1;
}

.multiselect-option span {
    font-size: 14px;
    color: #333;
    flex: 1;
}

/* ================================
   RESPONSIVE - TRABAJA
   ================================ */

@media (max-width: 1024px) {
    .page-header-trabaja h1 {
        font-size: 40px;
    }

    .trabaja-content {
        gap: 40px;
    }

    .trabaja-left,
    .trabaja-right {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-header-trabaja {
        padding: 40px 0 60px;
    }

    .page-header-trabaja h1 {
        font-size: 32px;
    }

    .page-header-trabaja p {
        font-size: 16px;
    }

    .trabaja-section {
        padding: 40px 0;
    }

    .trabaja-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trabaja-left,
    .trabaja-right {
        padding: 20px;
    }

    .trabaja-icon {
        width: 100px;
        height: 100px;
    }

    .trabaja-icon svg {
        width: 50px;
        height: 50px;
    }

    .trabaja-left h2 {
        font-size: 26px;
    }

    .trabaja-left p {
        font-size: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content-trabaja {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header-trabaja {
        padding: 20px;
    }

    .modal-header-trabaja h2 {
        font-size: 20px;
    }

    .modal-trabaja-form {
        padding: 20px;
        gap: 16px;
    }

    .colaboradores-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-header-trabaja h1 {
        font-size: 24px;
    }

    .page-header-trabaja p {
        font-size: 14px;
    }

    .trabaja-left h2 {
        font-size: 22px;
    }

    .trabaja-left p {
        font-size: 14px;
    }

    .trabaja-form .form-group,
    .modal-trabaja-form .form-group {
        gap: 12px;
    }

    .modal-header-trabaja {
        flex-direction: column;
        text-align: center;
    }

    .modal-header-trabaja svg {
        margin: 0 auto;
    }

    .colaboradores-section h2 {
        font-size: 24px;
    }

    .colaboradores-section p {
        font-size: 16px;
    }
}

/* ================================
   DOWNLOAD BUTTON STYLES
   ================================ */
.download-section {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px 0;
}

.download-btn {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 161, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #004d7a 0%, #003a5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 161, 0.4);
}

.download-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}