/* Tablets */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: none;
        width: 100%;
    }
    
    .stats {
        justify-content: center;
    }
}

/* Tablets Pequenos */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-slider {
        height: 500px;
        margin-top: 70px;
    }
    
    .slide {
        flex-direction: column-reverse;
    }
    
    .slide-content {
        padding: 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .slide-image {
        height: 50%;
        width: 100%;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 50px;
    }
}

/* Celulares */
@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .projects-grid,
    .help-options,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}