/* Responsividade */

/* Dispositivos grandes (laptops/desktops, 992px e acima) */
@media (max-width: 1200px) {
    :root {
        --container-max-width: 960px;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
}

/* Dispositivos médios (tablets, 768px e acima) */
@media (max-width: 992px) {
    :root {
        --container-max-width: 720px;
    }
    
    /* Header e Navegação */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    /* Seção Hero */
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 100%;
        margin-top: var(--spacing-xl);
    }
    
    /* Seção de Recursos */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Seção de Depoimentos */
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Seção Preços */
    .pricing-cards {
        grid-template-columns: repeat(1, 1fr);
        max-width: 400px;
        margin: 0 auto var(--spacing-3xl);
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dispositivos pequenos (celulares em paisagem, 576px e acima) */
@media (max-width: 768px) {
    :root {
        --container-max-width: 540px;
    }
    
    /* Header */
    .header-container {
        padding: var(--spacing-sm) 0;
    }
    
    .auth-buttons {
        display: none;
    }
    
    /* Seção Hero */
    .hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 300px;
        margin: 0 auto var(--spacing-lg);
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    /* Seção de Recursos */
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Seção Como Funciona */
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
}

/* Dispositivos extra pequenos (celulares em retrato) */
@media (max-width: 576px) {
    /* Seção Hero */
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    /* Seções */
    section {
        padding: var(--spacing-3xl) 0;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    /* CTA */
    .cta-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-subtitle {
        font-size: var(--font-size-base);
    }
    
    /* Footer */
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}