/* 
   Desentupidora Exata - Responsive Styles
   Mobile Adaptations
*/

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        min-height: 60vh;
        text-align: center;
        padding-top: 80px;
        /* Prevent overlap with fixed header */
    }

    .hero-content {
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }

    /* Service blocks - imagem acima do conteúdo no mobile */
    .service-block .grid {
        grid-template-columns: 1fr !important;
    }

    .service-block .grid img {
        order: -1;
        width: 100% !important;
        margin-bottom: 1.5rem;
    }

    .service-block .grid > div {
        order: 1;
        width: 100% !important;
    }

    .flex {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .whatsapp-float span {
        display: inline-block;
        /* Ensure text is visible */
    }
}