/* Evita scroll horizontal en móviles */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

/* Fuerza a los contenedores a respetar el ancho de pantalla */
* {
    box-sizing: border-box;
}

/* Imágenes, videos e iframes responsivos */
img,
video,
iframe {
    max-width: 100% !important;
    height: auto !important;
}

/* Elementor */
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap {
    max-width: 100% !important;
}