/* ========================================
   Responsive Design - Mobile First
   ======================================== */

/* Tablets e telas médias (até 768px) */
@media screen and (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
        text-align: justify;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary,
    .cta-tertiary {
        width: 100%;
        justify-content: center;
    }

    /* Services */
    .service-block {
        padding: 25px;
    }
    
    .service-title {
        font-size: 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .service-content p {
        font-size: 15px;
    }

    /* Map */
    .map-container iframe {
        height: 300px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 30px;
    }

    /* Sitemap */
    .sitemap-container h1 {
        font-size: 32px;
    }
    
    .sitemap-section h2 {
        font-size: 24px;
    }
    
    .sitemap-list {
        grid-template-columns: 1fr;
    }
}

/* Smartphones pequenos (até 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .cta-primary,
    .cta-secondary,
    .cta-tertiary,
    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-block {
        padding: 20px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .sitemap-container h1 {
        font-size: 28px;
    }
    
    .sitemap-section h2 {
        font-size: 22px;
    }
}

/* Desktop grande (acima de 1400px) */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .service-title {
        font-size: 36px;
    }
    
    .service-content p {
        font-size: 17px;
    }
}

/* Landscape em dispositivos móveis */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .cta-primary,
    .cta-secondary,
    .cta-tertiary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Impressão */
@media print {
    .whatsapp-float,
    #header,
    .cta-buttons,
    .cta-inline {
        display: none !important;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    body {
        font-size: 12pt;
    }
}

