/* Estilos Responsivos */

/* Tablets e dispositivos menores */
@media (max-width: 991px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .col-lg-4, .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .contact-form {
        margin-top: 40px;
    }
    
    .footer-links {
        align-items: flex-start;
        margin-top: 30px;
    }
    
    .social-links {
        margin-left: 0;
    }
    
    .social-link {
        margin-left: 0;
        margin-right: 20px;
    }
    
    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Dispositivos móveis */
@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-section, 
    .problems-section, 
    .services-section, 
    .results-section, 
    .contact-section {
        padding: 60px 0;
    }
    
    .col-md-4, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .truth-statement h3 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-content h3, 
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-description {
        font-size: 1rem;
    }
    
    .section-dots::before {
        font-size: 10px;
    }
}
