/* 
* LamaSmyll - Serviços de Impressão 3D
* Folha de estilo responsiva
*/

/* Telas grandes (desktop) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Telas médias (tablets) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: var(--spacing-md);
    }
    
    .service-category-content {
        flex-direction: column;
    }
    
    .service-category-image {
        margin-bottom: var(--spacing-md);
    }
    
    .about-history {
        flex-direction: column;
    }
    
    .about-history-image {
        margin-bottom: var(--spacing-md);
    }
}

/* Telas pequenas (smartphones) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-lg) 0;
        transition: left var(--transition-fast);
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: var(--spacing-sm) 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .modal-content {
        width: 90%;
        margin: 20% auto;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: var(--border-radius);
        margin-bottom: var(--spacing-xs);
    }
    
    .form-group button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .thanks-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .thanks-buttons .btn {
        width: 100%;
    }
}

/* Telas muito pequenas */
@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
    }
}
