/* =========================================
   1. ESTRUCTURA DEL SLIDER (ESTÁNDAR UNIFICADO)
   ========================================= */
.banner-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: transparent !important;
}

@media screen and (min-width: 1024px) {
    .banner-slider { height: 700px; }
}

/* =========================================
   2. CONFIGURACIÓN SWIPER & ANIMACIÓN
   ========================================= */
.mySwiper {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-main-content, .slide-main-content picture {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-main-content img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    animation: bounceFloat 6s ease-in-out infinite;
}

@keyframes bounceFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); } 
}

/* =========================================
   2.1. NAVEGACIÓN (FLECHAS Y PUNTOS ACTIVOS)
   ========================================= */
.swiper-button-next, 
.swiper-button-prev {
    display: flex !important; /* CAMBIADO DE NONE A FLEX */
    z-index: 100 !important;
    color: #be1421 !important; /* Rojo de tu marca */
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 35px !important;
    font-weight: bold;
}

/* Posición para que no se peguen al borde en PC */
.swiper-button-next { right: 25px !important; }
.swiper-button-prev { left: 25px !important; }

/* Indicadores (Puntos/Rectángulos) */
.swiper-pagination {
    display: block !important; /* CAMBIADO DE NONE A BLOCK */
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 35px !important;
    height: 5px !important;
    border-radius: 0 !important;
    background: #fff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #be1421 !important;
    opacity: 1;
}

/* =========================================
   3. CANALES DE ATENCIÓN
   ========================================= */
.canales-atencion {
    background: #f9f9f9;
    padding: 60px 0;
}

.canales-atencion .main__title {
    text-align: center;
    margin-bottom: 40px;
    color: #be1421;
    font-size: 2em;
}

.p-cont { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px; 
}

.canal-item {
    flex: 1; 
    min-width: 280px;
    text-align: center; 
    padding: 20px;
}

.canal-icon {
    font-size: 2.5em; 
    color: #be1421;
    margin-bottom: 15px; 
    display: block;
}

/* =========================================
   4. MAPA
   ========================================= */
.mapa-full {
    width: 100%;
    line-height: 0;
}

.mapa-full iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

/* =========================================
   5. AJUSTE MÓVIL (340PX)
   ========================================= */
@media (max-width: 767px) {
    .banner-slider { 
        height: 340px !important; 
    }
    .slide-main-content img {
        object-fit: contain !important; 
    }
    .canales-atencion .main__title {
        font-size: 1.6em;
    }
}