/* Estilos Responsivos - responsive.css */

/* Tablets e dispositivos menores */
@media screen and (max-width: 992px) {
    /* Header e navegação */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .cta-buttons {
        justify-content: center;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    /* Services Cards */
    .service-cards {
        gap: 20px;
    }

    .service-card {
        flex: 1 0 calc(50% - 20px);
    }

    /* Footer */
    .footer-content {
        gap: 30px;
    }
}

/* Dispositivos móveis */
@media screen and (max-width: 768px) {
    /* Seções */
    section {
        padding: 60px 0;
    }

    /* Tipografia */
    .hero-content h2 {
        font-size: 2rem;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

    /* Serviços */
    .service-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 0 100%;
    }

    /* Estatísticas */
    .stats {
        gap: 15px;
    }

    .stat-item {
        flex: 1 0 100%;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
    }
}

/* Dispositivos muito pequenos */
@media screen and (max-width: 480px) {
    /* Header */
    .logo h1 {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    /* CTA Section */
    .cta-box h3 {
        font-size: 1.5rem;
    }
}
