/* Ajuste para móvil: texto ocupa 90% del ancho */
@media (max-width: 768px) {
    .contact .text-center.mx-auto {
        max-width: 90vw !important;
        width: 90vw !important;
        padding: 0 5vw;
        box-sizing: border-box;
    }
}




/* === Ajuste MÓVIL: texto y carrusel ocupan 90% del viewport === */
@media (max-width: 768px) {
    /* 1. Eliminar padding lateral del container y contenedores padres */
    .fruite.py-5,
    .container.py-5,
    .contact.py-9,
    .contact .container.py-5,
    .contact .p-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 2. El bloque de texto: usar 90vw y centrar */
    .contact .text-center.mx-auto {
        max-width: 90vw !important;
        width: 90vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 5vw !important;
        box-sizing: border-box;
    }

    /* 3. El carrusel: también usar 90vw */
    .carrusel-container {
        width: 90vw !important;
        max-width: none !important;
        margin: 2rem auto !important;
        padding: 0 !important;
    }

    .carrusel-wrapper {
        width: 100% !important;
    }

    .carrusel-slide img {
        border-radius: 8px;
        width: 100% !important;
        height: auto !important;
    }

    /* 4. Prevenir scroll horizontal */
    body, html {
        overflow-x: hidden !important;
    }

    /* 5. Asegurar que las filas no tengan gap lateral */
    .row.g-4 {
        --bs-gutter-x: 0 !important;
    }
}