html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.section-index,
.section-cultos,
.section-doe {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/assets/images/image.5feb04780e2002b22072.png) no-repeat center center fixed;
    background-size: cover;
}

/* Estilos do cabeçalho */
header {
    color: whitesmoke;
    padding: 15px 0;
    margin: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    height: 70px;
    transition: transform 0.3s ease-in-out;
    /* Transição suave */
}



.logo {
    flex-shrink: 0;
    /* Impede que o logo encolha */
}

.logo img {
    max-height: 65px;
    filter: brightness(0) invert(1);
    margin-left: 25px;

}

header nav {
    display: flex;
    justify-content: flex-end;
    /* Alinha os itens do menu à direita */
    flex-grow: 1;
    /* Ocupa o espaço restante */
    margin-left: 40px;
}

header nav ul {
    list-style: none;
    margin: 0 10px;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    /* Garante que os links sejam alinhados à direita */
}



nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Estilos do dropdown */
.menu-item {
    position: relative;
}

.menu-item:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 180px;
    background-color: rgba(0, 0, 0, 0.5);
    /* Preto com 50% de opacidade */
    /* background-color: transparent; */
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.submenu li a {
    padding: 10px 15px;
    text-decoration: none;
    color: whitesmoke;
    display: block;
}

.submenu li a:hover {
    background-color: #ffcc00;
    color: black;
}



/* Primeira Seção - Bem-vindo */
.section-home {
    display: flex;
    justify-content: center;
    /* Alinha o conteúdo horizontalmente */
    align-items: center;
    /* Alinha o conteúdo verticalmente */
    height: 100vh;
    /* Ocupa toda a altura da tela */
    /*height: calc(100vh - 70px); /* Compensa a altura do header fixo */
    color: whitesmoke;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 1s ease-out;
    text-align: center;
    /* Centraliza o texto */
}

.section-home .text h1,
.section-home .text h4,
.section-home .text p {
    margin: 0;
    /* Remove qualquer margem do h1, h4, e p */
}

.section-home .text h1 {
    font-size: 3rem;
}

.section-home .text h4 {
    font-size: 1.8rem;
}

.section-home .text p {
    font-size: 1.5rem;
}

.section-home .text h1,
.section-home .text h4,
.section-home .text p {
    font-family: 'Montserrat', sans-serif;
}

/* Quando a seção "Bem-vindo" estiver em fade-out */
.section-home.fade-out {
    opacity: 0;
    pointer-events: none;
    /* Evita interação enquanto está em fade-out */
}

.section-cultos-unificada {
    padding: 60px 5vw;
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.cultos-eventos-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
}

/* BLOCO: Cultos + Mapa */
.cultos-box {
    flex: 2.2;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.cultos-conteudo {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    /* NOVO: centraliza verticalmente */
}

.cultos-info {
    flex: 1;
    min-width: 280px;
}

.cultos-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cultos-info p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #555;
}

.cultos-info p strong {
    color: #2c3e50;
}

.cultos-info p i {
    color: #e74c3c;
    margin-right: 8px;
}

/* Mapa maior */
.cultos-mapa {
    flex: 1.3;
    min-width: 360px;
}

.cultos-mapa iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cultos-mapa iframe:hover {
    transform: scale(1.03);
}


/* BLOCO: Eventos */
.eventos-box {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.eventos-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.evento-mini {
    background-color: #fffbe5;
    border-left: 4px solid #ffcc00;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out;
}

.evento-mini:hover {
    transform: translateY(-3px);
}

.evento-mini strong {
    color: #2c3e50;
    font-size: 1rem;
}

.evento-mini p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 5px;
}

.cultos-info h2 i,
.eventos-box h3 i {
    color: #ffcc00;
}


.section-historia {
    background: transparent;
    padding: 150px 40px;
    display: flex;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.historia-container {
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    /* centro transparente */
    border: 8px solid #ffffff;
    /* bordas brancas sólidas */
    backdrop-filter: blur(12px);
    /* efeito vidro fosco */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.historia-container h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.historia-container p {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
}


.section-cultos-unificada,
.section-historia {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


/* Seção Contato */
.section-contato {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/assets/images/image.5feb04780e2002b22072.png) no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 75vh;
    padding: 90px 20px;
    transition: opacity 1s ease-out;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.section-contato .text {
    width: 100%;
    max-width: 500px;

    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.section-contato h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-contato p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #e0e0e0;
}

.section-contato a {
    color: #ffd700;
    text-decoration: none;
}

.section-contato a:hover {
    text-decoration: underline;
}

/* Formulário de Contato */
.contact-form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    background-color: #ffffffcc;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: #ffd700;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}




/* FOOTER */
footer {
    background-color: #000;
    color: #fff;
}

footer nav {
    display: flex;
    flex-grow: 1;
    /* Ocupa o espaço restante */
    gap: 0;
}

footer nav ul {
    list-style: none;
    margin: 0 10px;
    padding: 0;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    /* Garante que os links sejam alinhados à direita */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0;
}

.footer-logo {
    max-width: 200px;
}

.social-icons {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
}

.social-icons li a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease-in-out, transform 0.3s;
}

.social-icons li a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

hr {
    border: none;
    border-top: 1px solid #fff;
    margin: 5px 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-links h4 {
    margin-bottom: 10px;
    margin-left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
    margin-left: 20px;
}

.footer-links ul li a {
    font-family: 'Montserrat', sans-serif;
    color: gray;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.5s;
    font-weight: 400;

}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact {
    width: auto;
    margin-right: 10px;
    text-align: left;
}

.footer-contact h4 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bolder;
    color: #fff;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-contact a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #ccc;
    background-color: #111;
}





/* Próximo Culto */
.proximo-culto {
    background-color: #000;
    color: #fff;
    top: 0;
    margin-top: 140px;
    padding: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    border-top: 3px solid #ffcc00;
    border-bottom: 3px solid #ffcc00;
}

.proximo-culto a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
}

/* Últimos Cultos */
.ultimos-cultos {
    background-color: transparent;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.ultimos-cultos h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffcc00;
}

.videos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.videos-container iframe {
    width: 100%;
    max-width: 360px;
    height: 215px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}




/* MINISTÉRIOS */

.section-ministerios {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url(/assets/images/image.5feb04780e2002b22072.png) no-repeat center center fixed;
    background-size: cover;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 25px;
    padding: 75px 20px;
}

.card {
    position: relative;
    height: 350px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 1s ease;
    z-index: 1;
}

.card:hover img {
    transform: scale(1.2);
    filter: blur(6px);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: auto;
    color: #ccc;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    opacity: 0;
    max-height: 0;
    font-weight: bold;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.card:hover .card-description {
    opacity: 1;
    max-height: 200px;
}

.expanded-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 90px auto 0 auto;
    padding: 0 40px;
    color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    gap: 40px;
    transition: all 0.5s ease;
}

.expanded-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    gap: 40px;
    transition: all 0.5s ease;
}

.expanded-item {
    display: flex;
    align-items: stretch;
    background-color: #111;
    color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    gap: 20px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.expanded-item:hover {
    transform: scale(1.02);
}

.expanded-image {
    width: 100%;
    height: auto;
    max-width: 50%;
    object-fit: cover;
    border-radius: 1rem;
    aspect-ratio: 5/5;
}

.expanded-text {
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expanded-text h2 {
    text-align: center;
}

.hidden {
    display: none;
}


/* DOE - Estilo atualizado */
.section-ofertas {
    color: #ffffff;
    margin-top: 25px;
    padding: 75px 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.ofertas-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}


.section-ofertas h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #ffdd57;
    font-weight: 600;
}

.versiculo {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #e6e6e6;
}

.versiculo span {
    display: block;
    margin-top: 12px;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.descricao {
    margin-bottom: 35px;
    font-size: 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

/* Container dos blocos de doação */
.blocos-doacao {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Blocos com dados */
.dados-bancarios,
.pix-box {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 16px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dados-bancarios:hover,
.pix-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Títulos das seções */
.dados-bancarios h3,
.pix-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffdd57;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.pix-box p,
.dados-bancarios p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #f5f5f5;
    line-height: 1.5;
    word-break: break-word;
}

/* Botão PIX */
.botao-pix {
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background-color: #ffdd57;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-pix:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Confirmação de cópia */
.confirmacao {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #9effa8;
}


.qrcode {
    width: 150px;
    height: 150px;
    margin: 20px auto 0;
    border-radius: 8px;
    background-image: url(/assets/images/qrcode_pix.c8c9f231534cfd1b605d.png);
    /* caminho relativo da imagem */
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ======================
   AJUSTES GERAIS + MENU MOBILE (TAP-FRIENDLY)
   ====================== */

/* Base responsiva / evitar overflow lateral */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Botão hamburguer padrão (desktop escondido) */
.navbar__toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: whitesmoke;
    margin-right: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Menu aberto (classe adicionada via JS) */
.navbar__menu.is-open {
    display: flex !important;
}

/* ===== MENU MOBILE – TAP-FRIENDLY ===== */
@media (max-width: 768px) {

    /* Botão hamburguer maior e com área de toque amigável */
    .navbar__toggle {
        display: inline-flex;
        /* centraliza o ícone */
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        /* maior que 1.5rem */
        padding: 10px;
        /* aumenta a área clicável */
        min-width: 48px;
        /* tap target recomendado */
        min-height: 48px;
        /* tap target recomendado */
        border-radius: 10px;
    }

    /* Container do dropdown com melhor legibilidade */
    .navbar__menu {
        position: absolute;
        top: calc(70px + env(safe-area-inset-top, 0px));
        /* altura do header + notch */
        right: 12px;
        left: 12px;
        display: none;
        /* escondido por padrão */
        flex-direction: column;
        gap: 0;
        background: rgba(0, 0, 0, 0.92);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
        overflow: hidden;
        z-index: 1000;
        padding: 6px 0;
        backdrop-filter: blur(6px);
        max-height: min(70vh, 520px);
        /* evita estourar a tela */
        overflow-y: auto;
        /* rolagem interna se passar */
        scrollbar-width: thin;
    }

    /* Itens maiores, com área de toque confortável */
    .navbar__menu li {
        min-height: 52px;
        display: flex;
        align-items: stretch;
    }

    .navbar__menu a {
        display: block;
        width: 100%;
        padding: 16px 18px;
        /* mais espaço lateral/vertical */
        font-size: 1.125rem;
        /* ~18px */
        line-height: 1.35;
        letter-spacing: 0.2px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .navbar__menu a:active {
        background: rgba(255, 255, 255, 0.08);
    }

    .navbar__menu a:last-child {
        border-bottom: 0;
    }

    /* Submenu no mobile (em coluna) */
    .submenu {
        position: static;
        display: none;
        margin: 0;
        padding: 6px 0;
        background: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, .08);
        box-shadow: none;
        border-radius: 0;
    }

    /* Use .submenu--open via JS se desejar abrir por clique */
    .submenu.submenu--open {
        display: block;
    }

    .menu-item:hover>.submenu {
        display: none;
    }

    /* desativa hover no mobile */

    .submenu li {
        min-height: 48px;
        display: flex;
        align-items: stretch;
    }

    .submenu a {
        padding: 14px 18px;
        font-size: 1.05rem;
        border-bottom: 1px dashed rgba(255, 255, 255, .08);
    }

    .submenu a:last-child {
        border-bottom: 0;
    }

    /*Ajustes ministérios*/
    /* empilha imagem e texto; remove “duas colunas” no mobile */
    .expanded-item {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    /* imagem responsiva (sem height fixa) */
    .expanded-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        /* remove a altura fixa */
        aspect-ratio: 5 / 5;
        /* opcional: mantém proporção agradável */
        object-fit: cover;
        border-radius: 12px;
    }

    /* texto abaixo da imagem com boa leitura */
    .expanded-text {
        padding: 0;
    }

    .expanded-text h2 {
        font-size: clamp(1.25rem, 3.5vw, 1.6rem);
        margin: 4px 0 8px;
    }

    .expanded-text p {
        font-size: clamp(0.95rem, 2.8vw, 1.05rem);
        line-height: 1.6;
    }

    /* container geral com respiro */
    .expanded-content {
        margin: 70px auto 0;
        padding: 0 16px;
    }
}

/* Ajuste extra: evita overflow horizontal por larguras fixas */
.expanded-item,
.expanded-content,
.expanded-text {
    max-width: 100%;
}

/* Pequenas melhorias gerais (todas as telas) */
.navbar__menu a,
.submenu a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Se ainda houver overflow por algum 100vw, force 100% */
@media (max-width: 768px) {

    .section,
    header,
    main,
    footer {
        width: 100%;
        /* preferir 100% a 100vw */
    }
}

/*# sourceMappingURL=styles.17b92790b230959e581a.css.map*/