/* === RESPONSIVE DESIGN === */

/* Tablets e dispositivos médios */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
        min-height: 80vh;
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartphones e dispositivos pequenos */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    header .logo {
        font-size: 1.4rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-ctas {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: 280px;
        flex: 1 1 100%;
        justify-content: center;
    }

    .btn-text {
        font-size: 0.9rem;
    }

    .btn-icon, .btn-arrow, .btn-phone, .btn-speed {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-emojis {
        gap: 1rem;
    }

    .emoji-item {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }

    .seo-content {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .content-section p,
    .content-section ul li {
        font-size: 1rem;
    }

    .map-section {
        padding: 2rem 1rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sitemap-container {
        padding: 2rem 1rem;
    }

    .sitemap-container h1 {
        font-size: 1.8rem;
    }

    .sitemap-section {
        padding: 1.5rem;
    }

    .sitemap-section h2 {
        font-size: 1.2rem;
    }

    .sitemap-section ul {
        grid-template-columns: 1fr;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-text {
        font-size: 0.85rem;
    }

    .btn-icon, .btn-arrow, .btn-phone, .btn-speed {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }


    .whatsapp-float a {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .content-section h2 {
        font-size: 1.3rem;
        padding-left: 1rem;
    }

    .content-section {
        padding: 1.2rem;
    }

    .map-container iframe {
        height: 250px;
    }

    footer {
        padding: 2rem 1rem 1rem 1rem;
    }
}

/* Landscape em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-emojis {
        margin: 1rem 0;
    }

    .emoji-item {
        font-size: 1.5rem;
    }
}

/* Dispositivos com telas muito grandes */
@media (min-width: 1920px) {
    .hero-content,
    .seo-content,
    .map-section,
    .footer-content,
    .sitemap-container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .content-section h2 {
        font-size: 2.2rem;
    }
}

/* Ajustes para impressão */
@media print {
    header,
    .whatsapp-float,
    .hero-emojis,
    .cta-section,
    footer {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
        background: white;
    }

    .content-section {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

