/* Contenedor Principal */
.mmc-premium-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
    padding-bottom: 40px; /* Espacio para los puntitos */
}

/* Fila y Separación (Gap) */
.mmc-premium-row {
    display: flex;
    gap: 20px; /* Separación entre las 2 columnas */
    width: 100%;
    min-height: 480px; 
}

/* Columnas Individuales */
.mmc-premium-col {
    flex: 1; 
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    
    /* MAGIA: Contenido Abajo a la izquierda */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: flex-start;
    padding: 40px;
    color: #fff;
}

/* Sombra degradada para que se lea siempre el texto */
.mmc-premium-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

/* Contenedor de Textos */
.mmc-premium-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-align: left;
}

/* Título y Descripción */
.mmc-premium-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.1;
    color: #fff;
}

.mmc-premium-content p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 25px 0;
    color: #eaeaea;
}

/* Botones "Píldora" */
.mmc-premium-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mmc-pill-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px; /* Curvatura total */
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mmc-pill-btn:hover {
    background: #fff;
    color: #111;
}

/* Flechas Laterales (Pequeñas y discretas) */
.mmc-prm-arrow {
    color: #111 !important;
    background: #fff;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin-top: -20px;
}
.mmc-prm-arrow::after { font-size: 14px !important; font-weight: bold; }

/* Paginación estilo "Guiones" (Calcado a tu imagen) */
.mmc-premium-slider .swiper-pagination {
    bottom: 0px !important;
}
.mmc-premium-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s;
}
.mmc-premium-slider .swiper-pagination-bullet-active {
    width: 25px; /* Se estira como un guion */
    background: #111;
    border-radius: 10px;
}

/* Responsive para Móviles */
@media (max-width: 768px) {
    .mmc-premium-row {
        flex-direction: column; /* Apila las columnas */
        gap: 15px;
    }
    .mmc-premium-col {
        min-height: 380px; 
        padding: 30px 20px;
    }
    .mmc-premium-content h2 { font-size: 26px; }
    .mmc-prm-arrow { display: none !important; } /* Ocultar flechas en móvil */
}