/* Responsive Styles */

/* Tablets & Smaller Devices */
@media screen and (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-info {
        order: 2;
    }
    
    .contato-form {
        order: 1;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--box-shadow);
        height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a,
    .navbar.scrolled .nav-menu a {
        color: var(--dark-color);
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .produtos-grid, 
    .steps-grid {
        gap: 20px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .depoimento-content {
        padding: 20px;
    }
    
    .contato-item {
        flex-direction: column;
    }
    
    .contato-item i {
        margin-bottom: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Landscape Orientation for Mobile Devices */
@media screen and (max-height: 450px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .nav-menu {
        padding: 20px 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
}

/* High Resolution Devices */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

