/* ================= MEDIA QUERY - MOBILE ================= */
@media (max-width: 768px) {
    
    /* MOSTRA o hambúrguer */
    .menu-toggle {
        display: block !important;
    }

    /* ESCONDE e transforma o menu em lateral */
    .navList {
        position: fixed;
        top: 0;
        right: -100%; /* Começa FORA da tela */
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        
        /* IMPORTANTE: Muda para vertical */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        
        /* Sombra e animação */
        box-shadow: -5px 0 20px rgba(0,0,0,0.4);
        transition: right 0.4s ease;
        z-index: 1001;
        padding: 40px 20px;
    }

    /* Quando ATIVO (menu aberto) */
    .navList.active {
        right: 0 !important;
    }

    /* Links no mobile */
    .navList a {
        font-size: 1.3rem;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        border-radius: 8px;
    }

    .navList a:hover {
        background: var(--color-base-muted);
    }

    /* Overlay escuro */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    /* ========= RESTO DO MOBILE ========= */
    .hero {
        padding: 50px 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 1.6rem;
    }

    .hero-image {
        order: -1;
    }

    .hero img {
        width: 85%;
        max-width: 280px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 40px 0;
    }

    .container {
        width: 92%;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-container iframe {
        height: 220px;
    }
}