/* ============================================================
   landing_mobile.css — Responsividade Mobile da Landing Page
   Menu slide-down idêntico ao ffoto.me
   ============================================================ */

/* ── Mobile Breakpoint ─────────────────────────────── */
@media (max-width: 768px) {

    /* Hamburger visível */
    .mobile-toggle {
        display: flex !important;
    }

    /* Slide-down panel (não fullscreen) */
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 200;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
        padding: 12px 0;
        display: block;
        text-align: center;
    }

    .btn-login {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        text-align: center;
    }

    .btn-cta-nav {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        text-align: center;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-h) + 20px);
    }

    .hero-content {
        padding: 40px 16px 60px;
        gap: 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-note {
        font-size: 0.78rem;
        text-align: center;
    }

    /* Mockup: esconder sidebar, mostrar só chat */
    .mockup-sidebar {
        display: none;
    }

    .mockup-body {
        height: 260px;
    }

    .mockup-chat {
        width: 100%;
    }

    /* Social Proof */
    .proof-list {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .proof-list > div {
        font-size: 0.82rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .feat-card-wide {
        grid-column: 1 !important;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Showcases */
    .feat-showcase {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .feat-showcase-content {
        text-align: center;
    }

    .feat-showcase-content h3 {
        font-size: 1.4rem;
    }

    .feat-showcase-img {
        max-width: 100%;
    }

    .feat-showcase-img img {
        border-radius: 12px;
    }

    /* Pricing */
    .pricing-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .price-card {
        max-width: 100%;
    }

    .price-card--popular {
        transform: none !important;
    }

    .price-num {
        font-size: 2.5rem;
    }

    /* FAQ */
    .faq-q {
        font-size: 0.95rem;
        padding: 16px;
    }

    .faq-a p {
        font-size: 0.88rem;
        padding: 0 16px 16px;
    }

    /* CTA */
    .cta-box {
        padding: 40px 24px !important;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 0.92rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Blobs menores no mobile */
    .blob-1 { width: 300px; height: 300px; }
    .blob-2 { width: 250px; height: 250px; }
    .blob-3 { width: 200px; height: 200px; }
}

/* ── Small mobile (< 400px) ────────────────────────── */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

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

    .nav-links a {
        font-size: 0.95rem !important;
    }
}
