/* Responsive Styles */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    /* Process section */
    .processo-content {
        padding: 1.2rem;
    }
    
    /* Gallery items */
    .servicos-gallery {
        flex-wrap: wrap;
    }
    
    .gallery-item {
        max-width: 280px;
    }
}

/* Tablets and Small Desktops (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    body {
        padding-top: 4rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    /* Hero section */
    #hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    /* About section */
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-image {
        order: -1;
        text-align: center;
    }
    
    /* Services section */
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services gallery */
    .servicos-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item {
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
    
    /* Why choose us section */
    .porque-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .porque-banner .banner-image {
        height: 250px;
    }
    
    /* Process section */
    .processo-timeline::before {
        left: 30px;
    }
    
    .processo-item {
        justify-content: flex-start;
    }
    
    .processo-content {
        width: calc(100% - 80px);
    }
    
    .processo-item:nth-child(even) .processo-content {
        margin-right: 0;
        margin-left: 30px;
        text-align: left;
    }
    
    /* Testimonials section */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .depoimento-card {
        margin-bottom: 2rem;
    }
    
    /* Location section */
    .localizacao-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
        margin-bottom: 2rem;
    }
    
    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-content p {
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    body {
        padding-top: 3.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    /* Header */
    header {
        padding: 0.5rem 0;
    }
    
    .logo svg {
        width: 100px;
        height: 35px;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.9rem;
    }
    
    /* Hero section */
    #hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Services section */
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery items */
    .gallery-item {
        max-width: 100%;
    }
    
    /* Why choose us section */
    .porque-grid {
        grid-template-columns: 1fr;
    }
    
    .porque-banner .banner-overlay {
        padding: 1.5rem;
    }
    
    .porque-banner .banner-overlay h3 {
        font-size: 1.3rem;
    }
    
    /* Contact form */
    .form-group label {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    body {
        padding-top: 3rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    /* Header */
    header {
        padding: 0.3rem 0;
    }
    
    .logo svg {
        width: 90px;
        height: 30px;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    nav a {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .btn-contato {
        padding: 0.3rem 0.5rem;
    }
    
    /* Hero section */
    #hero {
        padding: 1.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    /* About section */
    .sobre-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Services section */
    .servicos-gallery {
        margin-top: 2rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    /* Banner */
    .porque-banner .banner-image {
        height: 200px;
    }
    
    /* Process section */
    .processo-numero {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .processo-content {
        width: calc(100% - 70px);
        margin-left: 20px !important;
        padding: 1rem;
    }
    
    /* Contact form */
    .contato-form {
        padding: 1.5rem;
    }
    
    /* Thank you page */
    .obrigado-buttons {
        flex-direction: column;
        gap: 1rem;
    }
} 