/* ==========================================================================
   CONTENEDOR TRANSPARENTE
   ========================================================================== */
.mmc-footer-badges-container {
    width: 100% !important;
    background: transparent !important; /* 🔥 Totalmente transparente */
    padding: 5px 0 !important;
    position: relative;
    overflow: hidden; /* Corta fugas de contenido */
}

/* Limitador de ancho y RECORTADOR estricto de slides */
.mmc-footer-swiper {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 0 45px 10px 45px !important; 
    position: relative;
    overflow: hidden !important; /* 🔥 ESTO CORTA LAS LETRAS DEL OTRO SLIDE */
}

/* ==========================================================================
   COLUMNAS Y ICONOS (BLANCOS)
   ========================================================================== */
.mmc-badge-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 10px;
}

.mmc-badge-icon-wrapper {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px !important;
}

.mmc-badge-icon {
    max-width: 35px !important;
    height: auto !important;
    /* 🔥 ESTO VUELVE BLANCOS TUS ICONOS AUTOMÁTICAMENTE */
    filter: brightness(0) invert(1) !important; 
}

/* ==========================================================================
   TEXTOS EN BLANCO
   ========================================================================== */
.mmc-badge-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important; /* 🔥 Texto Blanco */
    text-transform: uppercase;
    margin: 0 0 10px 0 !important;
    letter-spacing: 1.5px;
}

.mmc-badge-text {
    font-size: 13px !important;
    color: #ffffff !important; /* 🔥 Descripción Blanca */
    opacity: 0.9; /* Un toque sutil para que no brille tanto como el título */
    line-height: 1.4 !important;
    margin: 0 !important;
    max-width: 250px;
}

/* ==========================================================================
   NAVEGACIÓN EN BLANCO
   ========================================================================== */
.mmc-footer-arrow {
    color: #ffffff !important; /* 🔥 Flechas Blancas */
    top: 50% !important;
    transform: translateY(-80%) !important;
}

.mmc-footer-arrow::after {
    font-size: 18px !important;
}

/* Puntos de abajo */
.mmc-footer-dots .swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.3;
}

.mmc-footer-dots .swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1;
}

/* ==========================================================================
   AJUSTES MÓVIL
   ========================================================================== */
@media (max-width: 768px) {
    .mmc-footer-swiper {
        padding: 0 40px 30px 40px !important;
    }
    
    .mmc-badge-title { font-size: 12px !important; }
    .mmc-badge-text { font-size: 11px !important; }
}

/* ESCRITORIO: Ocultar flechas */
@media (min-width: 769px) {
    .mmc-footer-arrow, .mmc-footer-dots {
        display: none !important;
    }
}