/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
    :root {
        font-size: 15px;
    }

    header {
        padding: 1rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-section h2 {
        font-size: 2rem;
    }
}

/* Mobile (menor que 768px) */
@media screen and (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-emojis {
        right: 1rem;
        gap: 0.5rem;
        font-size: 1.2rem;
    }

    .hero {
        margin-top: 0px;
        min-height: 80vh;
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-ctas {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        gap: 0.6rem;
    }

    .seo-content {
        padding: 2rem 1rem;
    }

    .service-section {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .service-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    .service-section p {
        font-size: 1rem;
        text-align: left;
    }

    .map-section {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .map-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        padding: 12px 20px;
        font-size: 1rem;
        gap: 8px;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }

    footer {
        padding: 3rem 1rem 1.5rem;
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.95rem;
    }
}

/* Mobile pequeno (menor que 480px) */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-section {
        padding: 1.5rem 1rem;
    }

    .service-section h2 {
        font-size: 1.4rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .header-emojis {
        display: none;
    }

    .map-section h2 {
        font-size: 1.5rem;
    }
}

/* Ajustes para evitar sobreposição do cabeçalho */
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 5rem;
    }
}

/* Otimizações para impressão */
@media print {
    header,
    .whatsapp-float,
    .progress-bar {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero,
    .service-section {
        page-break-inside: avoid;
    }
}

