/* ==========================================
   INFO BANNERS - Diseño Dividido con Slider
   ========================================== */

.info-banners {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafd 0%, #edf2f8 50%, #f0f4f9 100%);
    position: relative;
    overflow: hidden;
}

/* Fondo decorativo sutil */
.info-banners::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 74, 152, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-banners__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gap-lg);
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 4rem;
    align-items: center;
}

/* ===== Contenido de texto (izquierda) ===== */
.info-banners__content {
    padding-right: 1rem;
}

.info-banners__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 1.25rem;
    font-style: italic;
    letter-spacing: 1.5px;
    text-transform: none;
}

.info-banners__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.info-banners__title--blue {
    color: #004A98;
    display: inline;
    font-weight: 800;
}

.info-banners__title--gold {
    color: #0066CC;
    display: block;
    font-style: italic;
    font-weight: 400;
}

.info-banners__description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2.25rem;
    max-width: 420px;
}

.info-banners__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--oro);
    color: var(--azul-oscuro);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(200, 163, 95, 0.3);
}

.info-banners__btn:hover {
    background: #b8912e;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 163, 95, 0.45);
}

.info-banners__btn i {
    transition: transform 0.3s ease;
}

.info-banners__btn:hover i {
    transform: translateX(4px);
}

/* ===== Slider de banners (derecha) ===== */
.info-banners__slider-wrapper {
    position: relative;
    padding: 2rem 0 2rem 2rem;
}

.info-banners__slider {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

/* Tarjetas de fondo apiladas para efecto de profundidad */
.info-banners__slider::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    background: rgba(0, 74, 152, 0.06);
    border-radius: 18px;
    z-index: -1;
}

.info-banners__slider::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    background: rgba(0, 74, 152, 0.03);
    border-radius: 20px;
    z-index: -2;
}

.info-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 74, 152, 0.12),
                0 8px 20px rgba(0, 0, 0, 0.06);
}

.info-banner:first-child {
    position: relative;
}

.info-banner.active {
    opacity: 1;
    visibility: visible;
}

.info-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 6s ease;
}

.info-banner.active img {
    transform: scale(1.02);
}

/* ===== Dots indicadores ===== */
.info-banners__dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.info-banners__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 74, 152, 0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.info-banners__dot:hover {
    background: rgba(0, 74, 152, 0.4);
    transform: scale(1.15);
}

.info-banners__dot.active {
    background: #004A98;
    width: 28px;
    height: 10px;
    border-radius: 20px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .info-banners__container {
        grid-template-columns: 42% 58%;
        gap: 2.5rem;
    }
    
    .info-banners__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .info-banners {
        padding: 3.5rem 0 4.5rem;
    }
    
    .info-banners__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .info-banners__content {
        padding-right: 0;
        text-align: center;
    }

    .info-banners__title {
        color: #000000;
        font-weight: 800;
    }

    .info-banners__title--blue {
        color: #000000;
    }

    .info-banners__title--gold {
        color: #000000;
    }

    .info-banners__description {
        max-width: 100%;
        color: #000000;
        font-weight: 700;
    }
    
    .info-banners__title {
        font-size: 2rem;
    }
    
    .info-banners__slider-wrapper {
        padding: 0;
    }
    
    .info-banners__btn {
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .info-banners {
        padding: 2.5rem 0 3.5rem;
    }
    
    .info-banners__title {
        font-size: 1.6rem;
    }
    
    .info-banners__description {
        font-size: 0.9rem;
    }
    
    .info-banners__slider::before,
    .info-banners__slider::after {
        display: none;
    }
    
    .info-banners__btn {
        width: 100%;
        justify-content: center;
    }
}
