/* Mobile Responsive - Ajustes Conservadores */

@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        display: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    /* Hero sections */
    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .hero-cta {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    /* Business tabs */
    .business-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .business-tab {
        width: 100%;
    }

    /* Building blocks */
    .blocks-grid {
        grid-template-columns: 1fr !important;
    }

    .blocks-filters {
        flex-direction: column;
        gap: 0.5rem;
    }

    .niche-filter {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Sections */
    .section-title {
        font-size: 28px !important;
    }

    .section-description {
        font-size: 15px !important;
    }

    /* Dynamic pricing tables */
    [style*="grid-template-columns"] {
        overflow-x: auto;
    }

    /* Problema x Solução */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
