/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

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

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

    .seo-content h2 {
        font-size: 2rem;
    }

    .links-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Mobile Grande */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero {
        background-attachment: scroll;
    }

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

    .hero-cta {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

    .seo-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

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

    .maps-section {
        padding: 60px 0;
    }

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

    .maps-section iframe {
        height: 300px;
    }

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

    .footer-section {
        text-align: center;
    }

    .emergency-float {
        bottom: 55px;
        right: 15px;
    }

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

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

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

    .mapa-site {
        padding: 100px 0 60px;
    }

    .mapa-site h1 {
        font-size: 2.5rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .links-grid a {
        text-align: center;
        padding: 0.8rem;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

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

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .seo-content h2 {
        font-size: 1.6rem;
    }

    .seo-content .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 1.5rem auto 3rem;
    }

    .maps-section h2 {
        font-size: 1.8rem;
    }

    .maps-section iframe {
        height: 250px;
    }

    footer {
        padding: 40px 0 20px;
    }

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

    .mapa-site h1 {
        font-size: 2rem;
    }

    .emergency-float a {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .whatsapp-float a {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile Extra Pequeno */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    .hero {
        padding: 80px 0 40px;
    }

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

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

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

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

    .maps-section iframe {
        height: 200px;
    }

    .mapa-site {
        padding: 80px 0 40px;
    }
}

/* Landscape Mobile */
@media (max-width: 640px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }

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

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

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

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

    .maps-section iframe {
        height: 250px;
    }

    .footer-content {
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .emergency-float,
    .whatsapp-float,
    .cta-button {
        display: none !important;
    }

    body {
        background: white !important;
    }

    header,
    footer {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    .logo {
        color: black !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }

    .hero h1 {
        color: black !important;
        font-size: 2rem !important;
    }

    .seo-content {
        padding: 20px 0 !important;
    }

    .maps-section {
        display: none;
    }
}
