/* Estilos para telas menores que 1024px (tablets e alguns laptops) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-desktop .nav-link {
        padding: 0.5rem 0.75rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Estilos para telas menores que 768px (smartphones e tablets pequenos) */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .header-cta .phone-link {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-section-title {
        font-size: 1.8rem;
    }

    .page-section-subtitle {
        font-size: 1.3rem;
    }
}

/* Estilos para telas menores que 480px (smartphones) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-links a,
    .footer-contact .contact-item,
    .copyright,
    .footer-legal a {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-section-title {
        font-size: 1.5rem;
    }

    .page-section-subtitle {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .form-submit-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
}


