/* ===========================================
   QUALITÀ LIMPEZAS - Responsive.css
   Design responsivo para todos os dispositivos
   =========================================== */

/* Mobile First - Small devices (phones, 576px and up) */
@media (max-width: 576px) {
    .header-container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        display: none; /* Hide navigation on mobile for now */
    }

    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }

    .hero-container {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .seo-content {
        padding: 40px 15px;
    }

    .seo-section {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .seo-section h1 {
        font-size: 1.5rem;
    }

    .seo-section h2 {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .seo-section p {
        color: #444;
    }

    .whatsapp-cta {
        margin: 30px 0;
    }

    .maps-section {
        padding: 40px 15px;
    }

    .maps-container h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .maps-container iframe {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 130px;
        animation: pulse 2s infinite;
    }

    /* Remover transições de animação no mapa do site para mobile */
    .category-section,
    .sitemap-links a,
    .sitemap-back-link {
        transition: none !important;
    }

    .category-section:hover {
        transform: none !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
    }

    .sitemap-links a:hover {
        background: none !important;
        color: #666 !important;
        transform: none !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .sitemap-back-link:hover {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3) !important;
    }

    /* Forçar layout de uma coluna no mapa do site para mobile */
    .sitemap-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Forçar uma coluna nos grids internos das categorias */
    .city-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .city-section {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .seo-section {
        padding: 30px;
    }

    .seo-section h2 {
        font-size: 2rem;
    }

    .maps-container iframe {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 769px) and (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-container {
        padding: 50px 20px;
    }

    .seo-section {
        padding: 35px;
    }

    .maps-container iframe {
        max-width: 700px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1201px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .seo-section {
        padding: 45px;
    }

    .maps-container iframe {
        max-width: 900px;
        height: 500px;
    }
}

/* Landscape phones and small tablets */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        margin-top: 0;
    }

    .hero-container {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    nav,
    .cta-button {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
    }

    .hero h1,
    .hero p {
        color: black !important;
    }

    footer {
        background: white !important;
        color: black !important;
    }

    .footer-section a,
    .footer-section p {
        color: black !important;
    }
}

