
.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    background: #ddd;
    text-align: center;
    font-size: 18px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 200px !important;
}

.section-scoring, .productos-semana, .swiper-container{
    margin: 35px 0;
}


.productos{
    display: flex;
    width: 100%;
}

.section-scoring {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Por si se ve en móvil */
    justify-content: space-between;
}

.card-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
    flex: 1;
    min-height: 350px; /* Ajustá este valor según necesidad */
    box-sizing: border-box;
    background-color: white; /* O el fondo que uses */
}

.card-score h2 {
    text-align: center;
    color: var(--secondary-color);
    padding: 5px 0;
    min-height: 60px; /* Esto asegura misma altura de título */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-score p {
    text-align: center;
    color: gray;
    padding: 15px 0;
    min-height: 120px; /* Para alinear los párrafos */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-score .button-d {
    width: 30%;
    padding: 15px 15px;
    margin-top: auto; /* Empuja el botón al fondo */
}

.servicio-detalles{
    margin: 20px 0;
}
.full-w{
    display: flex;
    width: 80% !important;
    padding: 12px 0 !important;
    justify-content: center;
}

#situacion-form .input-d{
    padding: 10px;
}

@media (max-width: 768px) {
    .productos-semana{
        padding: 0 8px;
    }
    .titulo h2{
        padding: 15px 5px;
    }
    .productos {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .section-scoring{
        padding: 15px;
        flex-direction: column;
    }
    .card-score{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        min-width: 300px;
        min-height: 300px;
    
    }
    .swiper-slide {
        width: 200px !important;
        height: 200px !important;
    }
}


@media (min-width: 769px) {
    .titulo h2{
        padding-bottom: 10px ;
    }
    .productos {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }    
    .productos-semana{
        margin-top: 10px;
    }
}