
/* Ajustes Responsivos Automáticos */
* {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container, .wrapper, .content, .row, .col {
    max-width: 100%;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

/* Ajustes específicos para seção HERO no mobile */
.hero, .banner, .hero-section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
}

.hero .container, .banner .container {
    width: 100% !important;
    max-width: 100% !important;
}

.hero img, .banner img {
    max-width: 100% !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .hero, .banner, .hero-section {
        display: block !important;
        text-align: center;
    }
}
