/* Responsividade adicional para diferentes breakpoints */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

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

    .seo-section {
        padding: 40px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero h1 {
        font-size: 3.8rem;
    }

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

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        padding: 140px 0 100px;
    }

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

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

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

    .seo-section {
        padding: 25px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

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

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

    .seo-section {
        margin-bottom: 30px;
        padding: 20px;
    }

    .cta-section {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

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

    .hero {
        padding: 110px 0 70px;
    }

    .hero h1 {
        font-size: 2.3rem;
        margin-bottom: 1.2rem;
    }

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

    .hero-cta .btn-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .seo-content {
        padding: 40px 0;
    }

    .seo-section {
        margin-bottom: 25px;
        padding: 18px;
        border-radius: 10px;
    }

    .seo-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .seo-section p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .cta-section {
        margin: 30px 0;
        padding: 20px;
    }

    .cta-section .btn-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .maps-section {
        margin: 40px 0;
    }

    .maps-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

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

    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        margin-bottom: 30px;
    }

    .footer-section {
        margin-bottom: 25px;
    }

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

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .whatsapp-float a {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .whatsapp-text {
        margin-right: 5px;
    }
}

/* Orientation changes */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 80px 0 50px;
    }

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

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

/* Print styles */
@media print {
    .whatsapp-float,
    .hero-cta,
    .cta-section {
        display: none !important;
    }

    header {
        position: static;
        box-shadow: none;
    }

    .hero {
        background: white;
        color: #333;
        padding: 40px 0;
    }

    .seo-section,
    .maps-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    footer {
        background: white;
        color: #333;
        border-top: 1px solid #ddd;
    }

    .footer-links a {
        color: white;
    }
}


