/* Media Queries */

/* Tablet em diante (1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .about-grid, .contact-grid {
        gap: 2rem;
    }
}

/* Tablet Mobile (768px) */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-identity {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--color-yellow);
        padding-top: 1rem;
        display: inline-block;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .nav-desktop {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-blue-dark);
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition-speed);
        z-index: 999;
    }
    
    .nav-desktop.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    /* Prevenir scroll no body quando menu aberto */
    body.menu-open {
        overflow: hidden;
    }
}

/* Mobile Small (480px e menor) */
@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 2rem);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .positioning-quote {
        font-size: 1.5rem;
    }
}

/* Mobile Extra Small (320px - 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .card {
        padding: 1.5rem;
    }
}
