/* Mobile Devices (Portrait) - FINAL FIXES */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

    /* GLOBAL MOBILE RESET TO CENTER */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    li,
    a,
    div,
    section,
    .container,
    .belief-break,
    .offer-box {
        text-align: center !important;
    }

    /* Hero Optimization */
    .hero {
        min-height: auto;
        padding-top: 1rem;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        /* Tight spacing requested */
        align-items: center !important;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.1 !important;
    }

    .hero-sub {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img {
        width: 100% !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        border-radius: 12px;
    }

    .btn-hero {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1.1rem !important;
    }

    /* "Bordado não é mágica" (Belief Break) */
    .belief-break,
    .belief-break .text-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .belief-break h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .belief-break p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* "Pra quem é este Guia" (For Who) */
    .for-who-grid,
    .yes-column,
    .no-column {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 2rem 1rem !important;
        height: auto !important;
    }

    .yes-column ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: none !important;
        margin: 1.5rem 0 0 !important;
        padding: 0 !important;
    }

    .yes-column li {
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        gap: 0.5rem !important;
    }

    /* "VS" Comparison */
    .comparison-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        /* No flexible gap */
        margin-top: 2rem !important;
    }

    .compare-item {
        width: 100% !important;
        padding: 1.5rem !important;
        order: 1;
        /* Ensure distinct stacking order if needed */
        margin: 0 !important;
    }

    .vs-circle {
        order: 2;
        /* Ensure it stays between if using flex order, but DOM order is safer */
        margin: -15px 0 !important;
        /* Negative margin to overlap */
        position: relative !important;
        z-index: 10 !important;
        width: 45px !important;
        height: 45px !important;
        border: 4px solid var(--bg-cream) !important;
        background: var(--text-dark) !important;
    }

    .compare-item:last-child {
        order: 3;
    }

    /* Offer Box (Bonus) */
    .offer-box {
        padding: 3.5rem 1rem 2rem !important;
        /* Top padding for badge space */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        max-width: 100% !important;
    }

    .offer-title {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
    }

    .timer {
        font-size: 2.5rem !important;
        margin: 0.5rem 0 !important;
    }

    .bonus-badge {
        width: auto !important;
        white-space: nowrap !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        top: -15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}