/* ============================================================
   RESPONSIVIDADE AJUSTADA - MENU FULL SCREEN
   ============================================================ */

/* 1. RESET E VARIAVEIS (Mantido original) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a365d;
    --secondary: #27ae60;
    --accent: #f39c12;
    --light: #f8f9fa;
    --dark: #2d3436;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* 2. BLOQUEIO DE ROLAGEM (Ajustado para travar a tela cheia) */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
    width: 100% !important;
    position: fixed !important;
    top: 0;
    left: 0;
}

/* --- AJUSTES PARA TELAS ATÉ 992px --- */
@media screen and (max-width: 992px) {

    .navbar {
        background-color: transparent;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 3000;
        /* Elevado para ficar acima de tudo */
        height: 70px;
        display: flex;
        align-items: center;
        transition: background-color 0.4s ease;
    }

    .navbar.rolagem {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    }

    /* 3. ALTERAÇÃO PRINCIPAL: MENU OCUPANDO TODA A TELA */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* ALTERADO: de 280px para 100% */
        height: 100vh;
        background-color: #003366;
        /* Cor sólida para cobrir o fundo */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: 0.5s ease-in-out;
        /* Transição mais suave para full screen */
        z-index: 2500;
        box-shadow: none;
        /* Removido sombra lateral pois preenche tudo */
    }

    /* Garante que o ícone do menu (X) fique visível sobre o fundo azul */
    #mobile-menu.is-active .bar {
        background-color: #fff !important;
    }

    /* --- RESTANTE DO SEU CÓDIGO ORIGINAL MANTIDO ABAIXO --- */

    .navbar.rolagem .logo-texto {
        color: #1a365d;
    }

    .navbar-container {
        width: 100%;
        padding: 0 20px;
        display: flex;
        justify-content:
            space-between;
        align-items: center;
    }

    .logo img {
        height: 35px;
    }

    .logo-texto {
        font-size: 0.85rem;
        color: #fff;
        line-height: 1.2;
    }

    .logo-texto span {
        display: block;
        font-size: 0.55rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        cursor: pointer;
        z-index: 3100;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
        transition: 0.3s;
    }

    .navbar.rolagem .menu-toggle .bar {
        background-color: #1a365d;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
        display: block;
        padding: 15px;
        text-align: center;
        font-size: 1.5rem;
    }

    .btn-oferta {
        color: #003366 !important;
        margin: 10px 10px;
        font-weight: bold;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0 20px 60px 20px;
        text-align: center;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent 60%), url('../images/capa_mobile.jpeg');
        background-size: 100% 100%;
        background-position: center bottom;
    }

    .hero-content p {
        font-size: 0.40rem;
        color: #fff;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
        margin-bottom: 10px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 2px;
    }

    .btn-saiba-mais,
    .btn-video-popup {
        width: 100%;
        padding: 12px;
        border-radius: 50px;
        font-size: 1rem;
        justify-content: center;
    }

    .status-impacto {
        padding: 100px 0;
    }

    .status-impacto h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .status-impacto .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 30px;
        margin-bottom: 10px;
    }

    .status-impacto .card {
        padding: 20px 10px;
    }

    .ofertometro-box {
        padding: 10px 15px;
        width: 100%;
        margin-top: 10px;
    }

    .info-valores {
        flex-direction:
            column;
        gap: 10px;
        text-align: center;
    }

    .grid-engajamento {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .campo-noticias {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .campo-noticias .grid-noticias {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .canais-contato {
        display: flex;
        flex-direction: column;
        align-content: center;
    }

    .contato-card {
        width: 100%;
        flex-direction: row;
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}

@media screen and (max-width: 480px) {
    .status-impacto .container {
        grid-template-columns: 1fr;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo img {
        height: 32px;
    }
}