/* Responsive Styles */

/* Tablets (768px a 1024px) */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding-bottom: 0.5rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-preview {
        display: none;
    }
    
    .hero-content {
        margin-bottom: var(--space-xl);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Large (576px a 768px) */
@media screen and (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-lg: 2rem;
        --space-md: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: var(--space-md) 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: var(--space-sm) var(--space-md);
        display: block;
    }
    
    .nav-cta {
        flex-direction: column;
        margin-left: 0;
        margin-top: var(--space-sm);
        padding: var(--space-md);
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
        margin-bottom: var(--space-xs);
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .dashboard-preview {
        /* transform: none;
           max-width: 400px;
           margin: 0 auto;
        */
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Mobile Small (até 576px) */
@media screen and (max-width: 576px) {
    :root {
        --space-xl: 2rem;
        --space-lg: 1.5rem;
        --space-md: 1rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .dashboard-preview {
        display: none;
    }

    .section-header {
        margin-bottom: var(--space-lg);
    }
    
    .features-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .benefit-card,
    .pricing-card,
    .testimonial-card {
        padding: var(--space-md);
    }
    
    .company-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: var(--space-sm);
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        padding: 0.75rem;
    }
}

/* Ajustes para telas muito grandes */
@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

/* Ajustes para altura */
@media screen and (max-height: 700px) and (min-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0;
    }
}