/* Responsividade - Mobile First Adaptations (Desktop First no styles.css) */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .site-header .container {
        height: 70px;
    }

    .header-phone {
        font-size: 1rem;
        padding: 6px 12px;
    }

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

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

    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .cta-group {
        flex-direction: column;
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col p {
        justify-content: center;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    /* Adjust Container Padding for mobile */
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-phone span {
        display: none;
        /* Hide text, keep icon on very small screens */
    }
}