    /* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: #1a1a2e;
        background: #ffffff;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul,
    ol {
        list-style: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Outfit', sans-serif;
        line-height: 1.2;
    }

    /* ═══════════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════════ */
    .container {
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .section-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #0d9488;
        background: rgba(13, 148, 136, 0.08);
        border: 1px solid rgba(13, 148, 136, 0.15);
        padding: 6px 16px;
        border-radius: 100px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 16px;
    }

    .section-title span {
        color: #0d9488;
    }

    .section-subtitle {
        font-size: 1.05rem;
        color: #64748b;
        max-width: 640px;
        margin: 0 auto 40px;
    }

    .text-center {
        text-align: center;
    }

    /* ═══════════════════════════════════════════
       URGENCY BANNER
    ═══════════════════════════════════════════ */
    .urgency-banner {
        background: linear-gradient(90deg, #dc2626, #f97316);
        color: #fff;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        position: relative;
        z-index: 100;
    }

    .urgency-banner .fire {
        margin: 0 4px;
    }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .hero {
        background: linear-gradient(160deg, #0f3d38 0%, #134e48 40%, #0d3b35 100%);
        color: #fff;
        padding: 40px 0 60px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 4vw, 2.75rem);
        font-weight: 900;
        line-height: 1.15;
        margin-bottom: 24px;
    }

    .hero-text h1 .highlight {
        color: #2dd4bf;
        display: inline;
    }

    .hero-text p {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 12px;
        line-height: 1.7;
    }

    .hero-checks {
        margin: 24px 0 32px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-checks li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-checks li .check-icon {
        width: 22px;
        height: 22px;
        background: rgba(45, 212, 191, 0.15);
        border: 1.5px solid #2dd4bf;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: #2dd4bf;
        flex-shrink: 0;
    }

    .hero-image-placeholder {
        width: 100%;
    }

    .hero-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    /* Hero image mobile — oculta no desktop */
    .hero-image-mobile {
        display: none;
    }

    /* CTA Button */
    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        padding: 16px 36px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 24px rgba(13, 148, 136, 0.35);
        position: relative;
        overflow: hidden;
    }

    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.5s;
    }

    .cta-btn:hover::before {
        left: 100%;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(13, 148, 136, 0.45);
    }

    .cta-btn-secondary {
        background: #fff;
        border: 2px solid #10928773;
        color: #0d9488;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }

    .cta-btn-secondary:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    /* ═══════════════════════════════════════════
       STATS BAR
    ═══════════════════════════════════════════ */
    .stats-bar {
        background: #fff;
        border-bottom: 1px solid #f1f5f9;
        padding: 40px 0;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        text-align: center;
    }

    .stat-item .stat-number {
        font-family: 'Outfit', sans-serif;
        font-size: 2.25rem;
        font-weight: 800;
        color: #0d9488;
        line-height: 1;
        margin-bottom: 6px;
    }

    .stat-item .stat-label {
        font-size: 0.85rem;
        color: #64748b;
        font-weight: 500;
        line-height: 1.4;
    }

    /* ═══════════════════════════════════════════
       PREVIEW CAROUSEL
    ═══════════════════════════════════════════ */
    .preview-section {
        padding: 80px 0 60px;
        background: #f8fafb;
        overflow: hidden;
    }

    .carousel-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-top: 40px;
        padding: 10px 0 20px;
    }

    /* Fade edges suaves nas bordas */
    .carousel-wrapper::before,
    .carousel-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        z-index: 2;
        pointer-events: none;
    }

    .carousel-wrapper::before {
        left: 0;
        background: linear-gradient(to right, #f8fafb 0%, transparent 100%);
    }

    .carousel-wrapper::after {
        right: 0;
        background: linear-gradient(to left, #f8fafb 0%, transparent 100%);
    }

    .carousel-track {
        display: flex;
        gap: 20px;
        width: max-content;
        will-change: transform;
        animation: carousel-scroll 50s linear infinite;
    }

    .carousel-track:hover,
    .carousel-track:active {
        animation-play-state: paused;
    }

    .carousel-track .preview-card {
        flex-shrink: 0;
        width: 280px;
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .carousel-track .preview-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 16px 48px rgba(13, 148, 136, 0.15);
    }

    .carousel-track .preview-card img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 560 / 840;
    }

    @keyframes carousel-scroll {
        0% {
            transform: translate3d(0, 0, 0);
        }

        100% {
            transform: translate3d(-50%, 0, 0);
        }
    }

    @media (max-width: 600px) {
        .carousel-wrapper {
            margin-top: 24px;
            padding: 8px 0 16px;
        }

        .carousel-wrapper::before,
        .carousel-wrapper::after {
            width: 32px;
        }

        .carousel-track {
            gap: 14px;
            animation-duration: 38s;
        }

        .carousel-track .preview-card {
            width: 220px;
        }
    }

    /* ═══════════════════════════════════════════
       STEPS SECTION
    ═══════════════════════════════════════════ */
    .steps-section {
        padding: 80px 0;
        background: #fff;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 48px;
    }

    .step-card {
        text-align: center;
        padding: 40px 28px;
        border-radius: 16px;
        background: #f8fafb;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        position: relative;
    }

    .step-card:hover {
        border-color: #0d9488;
        box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
    }

    .step-number {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Outfit', sans-serif;
        font-size: 1.25rem;
        font-weight: 800;
        margin: 0 auto 20px;
    }

    .step-card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 10px;
    }

    .step-card p {
        font-size: 0.9rem;
        color: #64748b;
        line-height: 1.6;
    }

    /* ═══════════════════════════════════════════
       BONUS SECTION
    ═══════════════════════════════════════════ */
    .bonus-section {
        padding: 80px 0;
        background: linear-gradient(160deg, #0f3d38 0%, #134e48 40%, #0d3b35 100%);
        color: #fff;
    }

    .bonus-section .section-label {
        color: #2dd4bf;
        background: rgba(45, 212, 191, 0.1);
        border-color: rgba(45, 212, 191, 0.2);
    }

    .bonus-section .section-title {
        color: #fff;
    }

    .bonus-section .section-title span {
        color: #2dd4bf;
    }

    .bonus-section .section-subtitle {
        color: rgba(255, 255, 255, 0.65);
    }

    .bonus-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 48px;
    }

    .bonus-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 36px 28px;
        transition: all 0.3s ease;
        backdrop-filter: blur(8px);
    }

    .bonus-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(45, 212, 191, 0.3);
        transform: translateY(-4px);
    }

    .bonus-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 100px;
        margin-bottom: 16px;
    }

    .bonus-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

    .bonus-card p {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .bonus-card .bonus-value {
        font-size: 0.82rem;
        color: #2dd4bf;
        font-weight: 600;
    }

    .bonus-total {
        text-align: center;
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bonus-total p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
    }

    .bonus-total strong {
        color: #2dd4bf;
    }

    /* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
    .testimonials-section {
        padding: 80px 0;
        background: #f8fafb;
    }

    .testimonials-feed {
        max-width: 640px;
        margin: 40px auto 0;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        border: 1px solid #e2e8f0;
        overflow: hidden;
    }

    .feed-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.85rem;
        color: #64748b;
    }

    .feed-header span:last-child {
        font-weight: 500;
    }

    .comment {
        padding: 20px 24px;
        border-bottom: 1px solid #f1f5f9;
        transition: background 0.2s;
        text-align: start;
    }

    .comment:last-child {
        border-bottom: none;
    }

    .comment:hover {
        background: #fafbfc;
    }

    .comment-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .comment-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .comment-avatar.author-avatar {
        background: linear-gradient(135deg, #7c3aed, #a855f7);
    }

    .comment-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .comment-name {
        font-weight: 600;
        font-size: 0.88rem;
        color: #1a1a2e;
    }

    .comment-name .author-tag {
        font-size: 0.72rem;
        font-weight: 500;
        color: #7c3aed;
        margin-left: 6px;
    }

    .comment-text {
        font-size: 0.88rem;
        color: #475569;
        line-height: 1.6;
        margin-left: 48px;
    }

    .comment-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: 48px;
        margin-top: 8px;
        font-size: 0.78rem;
        color: #94a3b8;
        font-weight: 500;
    }

    .comment-actions .likes {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .comment-reply {
        margin-left: 48px;
        padding-left: 20px;
        border-left: 2px solid #e2e8f0;
        margin-top: 12px;
    }

    /* ═══════════════════════════════════════════
       PRICING SECTION
    ═══════════════════════════════════════════ */
    .pricing-section {
        padding: 80px 0;
        background: #fff;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        max-width: 840px;
        margin: 48px auto 0;
    }

    .pricing-card {
        background: #fff;
        border: 2px solid #e2e8f0;
        border-radius: 20px;
        padding: 40px 32px;
        position: relative;
        transition: all 0.3s ease;
    }

    .pricing-card:hover {
        border-color: #0d9488;
        box-shadow: 0 12px 48px rgba(13, 148, 136, 0.12);
    }

    .pricing-card.featured {
        border-color: #0d9488;
        box-shadow: 0 8px 40px rgba(13, 148, 136, 0.15);
        transform: scale(1.03);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05);
    }

    .pricing-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 6px 20px;
        border-radius: 100px;
        white-space: nowrap;
    }

    .pricing-card h3 {
        font-size: 1.35rem;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 16px;
    }

    .pricing-original {
        font-size: 0.9rem;
        color: #94a3b8;
        text-decoration: line-through;
        margin-bottom: 4px;
    }

    .pricing-price {
        font-family: 'Outfit', sans-serif;
        font-size: 2.75rem;
        font-weight: 900;
        color: #0d9488;
        line-height: 1;
        margin-bottom: 4px;
    }

    .pricing-info {
        font-size: 0.82rem;
        color: #94a3b8;
        margin-bottom: 28px;
    }

    .pricing-features {
        margin-bottom: 32px;
    }

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        text-align: start;
        gap: 10px;
        font-size: 0.88rem;
        color: #475569;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .pricing-features li .feat-icon {
        font-size: 0.85rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .pricing-features li .feat-icon.yes {
        color: #0d9488;
    }

    .pricing-features li .feat-icon.no {
        color: #d1d5db;
    }

    .pricing-features li.disabled {
        color: #c4c9d1;
    }

    .pricing-card .cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    .pricing-footer {
        text-align: center;
        margin-top: 24px;
    }

    .pricing-footer p {
        font-size: 0.85rem;
        color: #64748b;
    }

    .pricing-footer .lock-icon {
        margin-right: 4px;
    }

    /* ═══════════════════════════════════════════
       PAIN POINTS
    ═══════════════════════════════════════════ */
    .pain-section {
        padding: 80px 0;
        background: #f8fafb;
    }

    .pain-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 48px;
    }

    .pain-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 32px 28px;
        display: flex;
        gap: 20px;
        transition: all 0.3s ease;
    }

    .pain-card:hover {
        border-color: #fca5a5;
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.06);
    }

    .pain-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pain-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 6px;
    }

    .pain-card p {
        font-size: 0.88rem;
        color: #64748b;
        line-height: 1.6;
    }

    /* ═══════════════════════════════════════════
       KIT CONTENT
    ═══════════════════════════════════════════ */
    .kit-section {
        padding: 80px 0;
        background: #fff;
    }

    .kit-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 48px;
    }

    .kit-card {
        background: #f8fafb;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 28px 24px;
        transition: all 0.3s ease;
    }

    .kit-card:hover {
        border-color: #0d9488;
        box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
        transform: translateY(-2px);
    }

    .kit-card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .kit-card-emoji {
        font-size: 1.5rem;
    }

    .kit-card-area {
        font-size: 0.75rem;
        font-weight: 600;
        color: #0d9488;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .kit-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 8px;
    }

    .kit-card p {
        font-size: 0.85rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .kit-card-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .kit-card-tags span {
        font-size: 0.72rem;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 100px;
        background: rgba(13, 148, 136, 0.08);
        color: #0d9488;
    }

    .kit-full-card {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, #f0fdfa, #f8fafb);
        border-color: #99f6e4;
        text-align: center;
        padding: 40px 32px;
    }

    .kit-full-card .kit-card-emoji {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .kit-full-card p {
        max-width: 580px;
        margin: 0 auto 20px;
    }

    /* ═══════════════════════════════════════════
       GUARANTEE
    ═══════════════════════════════════════════ */
    .guarantee-section {
        padding: 60px 0;
        background: #f8fafb;
    }

    .guarantee-box {
        max-width: 720px;
        margin: 0 auto;
        background: #fff;
        border: 2px solid #e2e8f0;
        border-radius: 20px;
        padding: 48px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .guarantee-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0d9488, #14b8a6, #2dd4bf);
    }

    .guarantee-shield {
        font-size: 3rem;
        margin-bottom: 16px;
    }

    .guarantee-box h2 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 12px;
    }

    .guarantee-box p {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.7;
        max-width: 540px;
        margin: 0 auto;
    }

    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    .faq-section {
        padding: 80px 0;
        background: #fff;
    }

    .faq-list {
        max-width: 680px;
        margin: 40px auto 0;
    }

    .faq-item {
        border-bottom: 1px solid #e2e8f0;
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 600;
        color: #1a1a2e;
        transition: color 0.2s;
        user-select: none;
    }

    .faq-question:hover {
        color: #0d9488;
    }

    .faq-toggle {
        font-size: 1.25rem;
        color: #94a3b8;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 16px;
    }

    .faq-item.open .faq-toggle {
        transform: rotate(45deg);
        color: #0d9488;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-answer {
        max-height: 200px;
        padding-bottom: 20px;
    }

    .faq-answer p {
        font-size: 0.88rem;
        color: #64748b;
        line-height: 1.7;
    }

    /* ═══════════════════════════════════════════
       FINAL CTA
    ═══════════════════════════════════════════ */
    .final-cta {
        padding: 80px 0;
        background: linear-gradient(160deg, #0f3d38 0%, #134e48 40%, #0d3b35 100%);
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .final-cta::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .final-cta .container {
        position: relative;
        z-index: 2;
    }

    .final-cta h2 {
        font-size: clamp(1.5rem, 3.5vw, 2.25rem);
        font-weight: 800;
        margin-bottom: 16px;
    }

    .final-cta h2 span {
        color: #2dd4bf;
    }

    .final-cta p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 32px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .final-cta .cta-btn {
        font-size: 1.15rem;
        padding: 18px 44px;
    }

    .trust-badges {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin-top: 28px;
        flex-wrap: wrap;
    }

    .trust-badges span {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.55);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .footer {
        background: #0a0a1a;
        color: rgba(255, 255, 255, 0.4);
        text-align: center;
        padding: 32px 0;
        font-size: 0.82rem;
    }

    .footer-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 8px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.4);
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: #2dd4bf;
    }

    /* ═══════════════════════════════════════════
       IMAGE PLACEHOLDER (generic)
    ═══════════════════════════════════════════ */
    .img-placeholder {
        background: #f1f5f9;
        border: 2px dashed #d1d5db;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        font-size: 0.82rem;
        font-weight: 500;
        min-height: 200px;
        position: relative;
    }

    .img-placeholder span {
        position: absolute;
        pointer-events: none;
    }

    /* ═══════════════════════════════════════════
       ANIMATIONS (Instant on Mobile - No Render Delays)
    ═══════════════════════════════════════════ */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 900px) {
        .hero .container {
            grid-template-columns: 1fr;
        }

        /* No mobile: esconde imagem da coluna direita, mostra a inline */
        .hero-image-placeholder {
            display: none;
        }

        .hero-image-mobile {
            display: block;
            margin: 20px 0 8px;
        }

        .hero-image-mobile img {
            width: 100%;
            height: auto;
            border-radius: 14px;
            object-fit: cover;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .steps-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .bonus-grid {
            grid-template-columns: 1fr;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 420px;
        }

        .pricing-card.featured {
            transform: scale(1);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02);
        }

        .pain-grid {
            grid-template-columns: 1fr;
        }

        .kit-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .stat-item .stat-number {
            font-size: 1.75rem;
        }

        .guarantee-box {
            padding: 32px 24px;
        }

        .pricing-price {
            font-size: 2.25rem;
        }

        .trust-badges {
            flex-direction: column;
            gap: 12px;
        }
    }