/* Contenedor Principal (Lienzo con fondo) */
.mcc-carousel-wrapper {
    position: relative;
    width: 100%;
    /* Ahora cortamos lo que salga del lienzo para que no flote por la web */
    overflow: hidden; 
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Contenedor Swiper */
.mcc-swiper-container {
    width: 100%;
    height: 100%;
    /* Permitimos que las sombras se vean DENTRO del padding del wrapper, 
       pero Swiper manejará el recorte en sus límites internos */
    overflow: visible !important; 
}

/* Tarjeta Individual */
.mcc-card {
    background-color: #ffffff;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    /* Evita que la tarjeta se pegue arriba/abajo por la sombra */
    margin: 15px 0; 
}

.mcc-card:hover {
    transform: translateY(-5px);
}

/* Tipografías */
.mcc-subtitle { margin: 0 0 10px 0; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.mcc-title { margin: 0 0 15px 0; font-size: 22px; font-weight: bold; }
.mcc-desc { margin: 0 0 20px 0; line-height: 1.6; }

/* Lista de Características */
.mcc-features { list-style: none; padding: 0; margin: auto 0 0 0; }
.mcc-features li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.mcc-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: inherit;
    opacity: 0.8;
}

/* Paginación */
.mcc-carousel-wrapper .swiper-pagination {
    bottom: 15px !important;
}