/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --bg-color: #050510;
    --bg-secondary: #0a0a1a;
    --bg-card: rgba(20, 20, 40, 0.4);
    --bg-card-hover: rgba(30, 30, 60, 0.6);
    
    --neon-pink: #ff007f;
    --neon-yellow: #ffcc00;
    --neon-blue: #00e5ff;
    --neon-green: #00ff00;
    --neon-purple: #b000ff;
    --neon-red: #ff3333;
    
    --primary-btn: #00d000;
    --primary-btn-hover: #00ff00;
    
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}

.neon-text-yellow {
    color: var(--neon-yellow);
    text-shadow: 0 0 5px var(--neon-yellow), 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow);
}

.neon-text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 5px var(--neon-purple), 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
}

.neon-border-blue { border: 1px solid var(--neon-blue); box-shadow: inset 0 0 10px rgba(0,229,255,0.2), 0 0 10px rgba(0,229,255,0.2); }
.neon-border-red { border: 1px solid var(--neon-red); box-shadow: inset 0 0 10px rgba(255,51,51,0.2), 0 0 10px rgba(255,51,51,0.2); }
.neon-border-yellow { border: 1px solid var(--neon-yellow); box-shadow: inset 0 0 10px rgba(255,204,0,0.2), 0 0 10px rgba(255,204,0,0.2); }
.neon-border-pink { border: 1px solid var(--neon-pink); box-shadow: inset 0 0 10px rgba(255,0,127,0.2), 0 0 10px rgba(255,0,127,0.2); }
.neon-border-green { border: 1px solid var(--neon-green); box-shadow: inset 0 0 10px rgba(0,255,0,0.2), 0 0 10px rgba(0,255,0,0.2); }
.neon-border-purple { border: 1px solid var(--neon-purple); box-shadow: inset 0 0 10px rgba(176,0,255,0.2), 0 0 10px rgba(176,0,255,0.2); }

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 208, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 208, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 208, 0, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-btn);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 208, 0, 0.5);
    text-align: center;
    width: 100%;
}

.cta-button:hover {
    background-color: var(--primary-btn-hover);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

.large-btn {
    font-size: 1.4rem;
    padding: 20px 40px;
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-color: var(--bg-color);
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(5,5,16,1) 0%, rgba(5,5,16,0.95) 45%, rgba(5,5,16,0.4) 75%, rgba(5,5,16,0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 20px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.badge-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 25px;
}

.badge-tagline i {
    color: var(--neon-yellow);
    width: 18px; height: 18px;
}

.badge-tagline span {
    color: var(--neon-yellow);
    font-weight: 700;
}

.hero-title {
    font-size: 4.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 900;
}

.hero-title .neon-text-yellow {
    font-size: 4.8rem;
    display: block;
    margin-top: -5px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.6), 0 0 30px rgba(255, 204, 0, 0.4), 0 0 60px rgba(255, 204, 0, 0.2);
}

.hero-mobile-mockup {
    display: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d0d0e0;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--neon-yellow);
    font-weight: 700;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.benefit-item .icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(176,0,255,0.3);
}

.benefit-item i {
    color: var(--neon-purple);
    width: 24px; height: 24px;
}

.benefit-item span {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-offer-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px 30px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.offer-price-info {
    text-align: left;
    margin-bottom: 0;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--neon-yellow);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255,204,0,0.5);
    display: flex;
    align-items: baseline;
}

.current-price .currency {
    font-size: 1.2rem;
    margin-right: 5px;
}

.hero-offer-box .cta-button {
    width: auto;
    flex-grow: 1;
    font-size: 1rem;
    padding: 15px 20px;
}

.hero-offer-box .cta-button span {
    text-align: left;
    line-height: 1.2;
}

.hero-guarantees {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-guarantees span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-guarantees i {
    width: 14px; height: 14px;
    color: var(--neon-yellow);
}

/* ==========================================================================
   Section 2: Showcase
   ========================================================================== */
.showcase {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.showcase-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px 15px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.showcase-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
}

.showcase-card .card-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.showcase-card h3 {
    font-size: 1.1rem;
    color: var(--text-main);
}

/* ==========================================================================
   Section 3: Opportunity
   ========================================================================== */
.opportunity {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.opportunity-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1563245159-f793f19d8c37?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    height: 400px;
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.2);
    border: 1px solid rgba(255,0,127,0.3);
}

.neon-sign-mockup {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.opportunity-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.opportunity-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.market-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.market-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.market-item i {
    width: 30px; height: 30px;
    color: var(--text-muted);
}

.market-item span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.highlight-text {
    font-size: 1.2rem !important;
    color: var(--text-main) !important;
    border-left: 4px solid var(--neon-purple);
    padding-left: 20px;
}

/* ==========================================================================
   Section 4: What You Will Learn
   ========================================================================== */
.what-you-learn {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-color));
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.learn-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.learn-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176,0,255,0.2);
    transform: translateY(-5px);
}

.learn-card i {
    width: 40px; height: 40px;
    color: var(--neon-purple);
    margin-bottom: 15px;
}

.learn-card h3 {
    font-size: 1.1rem;
}

/* ==========================================================================
   Section 5: Target Audience
   ========================================================================== */
.target-audience {
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.audience-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: var(--radius-md);
}

.audience-card i {
    width: 40px; height: 40px;
    color: var(--neon-pink);
    flex-shrink: 0;
}

.audience-card p {
    font-weight: 500;
    font-size: 1.1rem;
}

/* ==========================================================================
   Section 6: What You Get
   ========================================================================== */
.what-you-get {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.get-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mockup-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius-sm);
    box-shadow: 
        -20px 20px 0px rgba(0,0,0,0.5),
        -40px 40px 50px rgba(176,0,255,0.2);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(15deg);
}

.mockup-box-inner {
    text-align: center;
}

.mockup-box h3 {
    font-size: 2rem;
    color: var(--neon-yellow);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255,204,0,0.5);
}

.mockup-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    transform: rotate(-10deg);
}

.get-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
}

.checklist i {
    color: var(--neon-purple);
    width: 20px; height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   Section 7: Bonuses
   ========================================================================== */
.bonuses {
    padding: 100px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: rgba(176,0,255,0.05);
    border: 1px solid rgba(176,0,255,0.2);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.bonus-card:hover {
    background: rgba(176,0,255,0.1);
    transform: translateY(-5px);
}

.bonus-card i {
    width: 40px; height: 40px;
    color: var(--neon-purple);
    margin-bottom: 15px;
}

.bonus-card p {
    font-weight: 500;
}

/* ==========================================================================
   Section 8: Offer
   ========================================================================== */
.final-offer {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
}

.offer-box-large {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a10;
    border-radius: 24px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    padding: 2px;
    box-shadow: 0 0 40px rgba(176,0,255,0.15);
}

.offer-box-large::before {
    content: '';
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: linear-gradient(to right, #b000ff, #ffcc00);
    z-index: -1;
    border-radius: 24px;
}

.offer-body-single {
    background: #0a0a10;
    border-radius: 22px;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-title-glow {
    color: #ffcc00;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.offer-body-single .old-price {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.offer-body-single .old-price del {
    color: #ff3333;
    text-decoration: line-through;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-10x {
    border: 2px solid #b000ff;
    border-radius: 12px;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(176,0,255,0.5), inset 0 0 10px rgba(176,0,255,0.5);
}

.currency-symbol {
    color: #ffcc00;
    font-size: 2.5rem;
    font-weight: bold;
    align-self: flex-start;
    margin-top: 25px;
}

.giant-price {
    color: #ffcc00;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.8), 2px 5px 0px #b38f00;
}

.cash-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
}

.coin-icon {
    color: #ffcc00;
    width: 24px; height: 24px;
}

.cash-yellow {
    color: #ffcc00;
    font-weight: bold;
}

.green-glow-btn {
    background: linear-gradient(to bottom, #00ff00, #009900);
    border: 2px solid #66ff66;
    box-shadow: 0 0 30px rgba(0,255,0,0.6), inset 0 0 15px rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 20px 40px;
    font-size: 1.5rem;
    width: 90%;
    max-width: 700px;
    display: flex;
    justify-content: center;
}

.green-glow-btn i {
    width: 28px; height: 28px;
}

.offer-badges-external {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge-ext {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e0e0e0;
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.2;
}

.badge-icon {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 2px solid #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
}

.badge-icon i {
    width: 22px; height: 22px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.secure-checkout i {
    width: 16px; height: 16px;
    color: var(--primary-btn);
}

/* ==========================================================================
   Section 9: FAQ
   ========================================================================== */
.faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container,
    .opportunity-container,
    .get-container,
    .offer-body {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .badge-tagline {
        margin: 0 auto 20px;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 20px;
    }
    
    .hero-offer-box {
        flex-direction: column;
        text-align: center;
        max-width: 450px;
        margin: 0 auto 20px;
        padding: 25px 20px;
    }
    
    .offer-price-info {
        text-align: center;
    }
    
    .current-price {
        justify-content: center;
    }
    
    .hero-offer-box .cta-button {
        width: 100%;
    }
    
    .hero-offer-box .cta-button span {
        text-align: center;
    }
    
    .hero-guarantees {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-graphics {
        display: none;
    }
    
    .opportunity-image {
        order: -1;
    }
    
    .mockup-box {
        margin-bottom: 40px;
    }
    
    .checklist {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    /* MOBILE EXCLUSIVE HERO SETTINGS (Perfect match to Reference Image 2) */
    .hero {
        background-color: #02020c;
        background-image: url('https://vootlkuyzwzvpxcfkfzk.supabase.co/storage/v1/object/public/public-files/1786378862137-4qotwu.png');
        background-size: 100% auto; /* Força a imagem a encaixar perfeitamente na largura do celular, preservando todos os neon da lateral */
        background-position: right top;
        background-repeat: no-repeat;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 40px;
        min-height: auto;
        height: auto;
        display: block; 
    }

    .hero-container {
        display: block;
        padding: 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
        margin: 0;
        position: relative; /* Para posicionar o mockup */
    }

    .hero-bg-overlay {
        /* Overlay escuro em toda a tela para melhorar contraste, mais forte na esquerda */
        background: linear-gradient(
            90deg,
            rgba(5, 5, 16, 0.98) 0%,
            rgba(5, 5, 16, 0.95) 45%,
            rgba(5, 5, 16, 0.75) 75%,
            rgba(5, 5, 16, 0.60) 100%
        );
    }

    .badge-tagline {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        margin: 0 0 25px 0;
        white-space: nowrap; 
        font-size: 0.8rem;
        padding: 10px 12px;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
        background: rgba(255, 204, 0, 0.1);
        border: 1px solid rgba(255, 204, 0, 0.3);
        border-radius: 30px;
    }
    
    .hero-title {
        text-align: left;
        width: 55%; /* Diminui para dar mais espaço ao mockup */
        font-size: 2.8rem; /* Letras menores para caber no novo layout */
        line-height: 1.05;
        margin: 0 0 15px 0 !important; /* Zera margens laterais para forçar alinhamento à esquerda */
    }

    .hero-title .neon-text-yellow {
        font-size: 3.2rem;
        display: block;
        margin-top: 5px;
    }

    .hero-subtitle {
        text-align: left;
        width: 52%; 
        margin: 0 0 70px 0 !important; /* Espaço suficiente para o mockup não bater no grid */
        font-size: 0.95rem; 
        line-height: 1.5;
    }

    @keyframes floatMockup {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
        100% { transform: translateY(0px); }
    }

    .hero-mobile-mockup {
        display: block;
        position: absolute;
        right: -10px; 
        top: 155px; /* Sobe um pouco a imagem para não bater nos cards embaixo */
        width: 50%; /* Um pouco menor que 55% mas ainda gigante (quase o dobro do original) */
        max-width: none; 
        z-index: 10;
        border-radius: 8px;
        animation: floatMockup 4s ease-in-out infinite;
    }

    .hero-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px; /* Extremamente compactado para caber na primeira vista */
        margin-bottom: 20px; /* Reduzido de 40px para subir o box de oferta */
        width: 100%;
    }

    .benefit-item {
        flex-direction: row;
        text-align: left;
        background: rgba(176,0,255,0.05);
        border: 1px solid rgba(176,0,255,0.3);
        padding: 10px 8px; /* Padding reduzido para espremer o card */
        border-radius: 8px; /* Cantos menores */
        align-items: center;
        gap: 8px; /* Ícone mais colado no texto */
        height: 100%;
    }

    .benefit-item .icon-wrapper {
        border: none;
        background: transparent;
        width: 20px; /* Ícone reduzido */
        height: 20px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .benefit-item i {
        width: 20px; height: 20px; /* Ícone reduzido */
    }
    
    .benefit-item span {
        font-size: 0.75rem; /* Texto reduzido para caber no bloco pequeno */
        line-height: 1.2;
    }

    .hero-offer-box {
        background: rgba(10, 10, 26, 0.95);
        border: 1px solid rgba(255, 204, 0, 0.3);
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        padding: 35px 25px; /* Box enorme e imponente */
        margin: 0 auto;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .offer-price-info {
        margin-bottom: 25px;
    }

    .hero-offer-box .cta-button {
        width: 100%;
        padding: 22px 15px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
    
    .hero-guarantees {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 25px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .current-price {
        font-size: 2.8rem;
    }
    
    .yellow-price {
        font-size: 3rem;
    }
    
    .market-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-body-single {
        padding: 30px 15px;
    }
    
    .giant-price {
        font-size: 4.5rem;
    }
    
    .badge-10x {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
    
    .currency-symbol {
        font-size: 1.8rem;
        margin-top: 10px;
    }
    
    .offer-title-glow {
        font-size: 1.8rem;
    }
    
    .green-glow-btn {
        font-size: 1rem;
        padding: 15px 10px;
        width: 100%;
    }
    
    .cash-price-row {
        font-size: 1rem;
    }
    
    .offer-badges-external {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* =========================================
   Mobile Specific Pricing Card Redesign
   ========================================= */
.price-section-mobile { display: none; }

@media (max-width: 767px) {
  .final-offer { display: none !important; }
  .price-section-mobile { display: block; padding: 24px 16px; background: #050412; }

  .price-card {
    width: 100%; max-width: 430px; margin: 0 auto; padding: 24px 18px 18px; text-align: center;
    background: radial-gradient(circle at 50% 25%, rgba(255, 192, 0, 0.08), transparent 42%), linear-gradient(180deg, #090817 0%, #05040e 100%);
    border: 1px solid rgba(188, 55, 255, 0.38); border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), inset 0 0 30px rgba(115, 34, 190, 0.06);
  }

  .offer-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 7px 14px; margin-bottom: 8px; color: #ffd21a;
    background: rgba(255, 195, 0, 0.08); border: 1px solid rgba(255, 195, 0, 0.45); border-radius: 999px;
    font-size: 12px; font-weight: 800; letter-spacing: 0.6px;
  }

  .price-card h2 {
    margin: 0 0 16px; color: #ffffff; font-size: 24px; line-height: 1.05; font-weight: 900; letter-spacing: -0.5px;
  }

  .old-price { margin: 0 0 14px; color: rgba(255, 255, 255, 0.68); font-size: 15px; line-height: 1.3; }
  .old-price span { color: rgba(255, 255, 255, 0.62); text-decoration: line-through; text-decoration-color: #ff3d3d; text-decoration-thickness: 2px; }

  .installment { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 4px 0 8px; }

  .installment-label {
    padding: 8px 11px; color: #ffffff; background: rgba(170, 35, 255, 0.10);
    border: 1px solid rgba(191, 47, 255, 0.70); border-radius: 10px; font-size: 16px; line-height: 1; font-weight: 800;
    box-shadow: 0 0 14px rgba(174, 35, 255, 0.20);
  }

  .installment-price { display: flex; align-items: flex-start; justify-content: center; gap: 5px; color: #ffd100; }
  .installment-price .currency { margin-top: 13px; font-size: 24px; line-height: 1; font-weight: 900; }
  .installment-price strong {
    font-size: clamp(64px, 18vw, 78px); line-height: 0.88; font-weight: 950; letter-spacing: -3px;
    text-shadow: 0 0 12px rgba(255, 210, 0, 0.55), 0 0 28px rgba(255, 170, 0, 0.20);
  }

  .cash-price { margin: 12px 0 20px; color: rgba(255, 255, 255, 0.86); font-size: 16px; line-height: 1.2; }
  .cash-price strong { color: #ffd21a; font-size: 19px; font-weight: 900; }

  .price-cta {
    width: 100%; min-height: 74px; display: flex; align-items: center; justify-content: center;
    padding: 14px 18px; color: #ffffff; background: linear-gradient(180deg, #15df29 0%, #00b818 100%);
    border: 1px solid rgba(115, 255, 105, 0.90); border-radius: 15px; font-size: 17px; line-height: 1.15;
    font-weight: 900; text-align: center; text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 225, 40, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28); cursor: pointer;
  }

  .price-trust {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 18px; padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }

  .price-trust-item {
    display: flex; align-items: center; justify-content: flex-start; gap: 7px; min-width: 0;
    color: rgba(255, 255, 255, 0.78); font-size: 12px; line-height: 1.15; text-align: left;
  }
}
