:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --primary-color: #ffffff;
    /* Minimalist White */
    --accent-color: #333333;
    /* Dark Grey for borders/subtle elements */
    --highlight-color: #ff3333;
    /* A single bold color for critical CTAs/Errors */
    --text-color: #f0f0f0;
    --text-muted: #888888;
    --font-main: 'Inter', sans-serif;
    --section-spacing: 5rem;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-main);
    font-weight: 800;
    letter-spacing: -0.02em;
    /* Tighter tracking for modern look */
    color: #fff;
}

.container {
    max-width: 1000px;
    /* Tighter container for readability */
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--section-spacing) 0;
    border-bottom: 1px solid #1a1a1a;
}

section:last-child {
    border-bottom: none;
}

/* Top Notification Bar */
#top-bar {
    background-color: var(--highlight-color);
    color: #fff;
    text-align: center;
    padding: 6px 0;
    /* Reduced padding */
    font-weight: 500;
    font-size: 0.8rem;
    /* Smaller font */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 51, 51, 0.9);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    /* Slightly shorter */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    text-align: center;
    padding-top: 6rem;
    /* Account for fixed bar + spacing */
    background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #0a0a0a 60%);
    /* Added subtle depth */
    position: relative;
    /* Clean background, no grid/gradients */
}

/* Removed complex hero::before grid */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none;
    /* Removed uppercase enforcement for cleaner look */
}

/* Optional: Keep uppercase explicitly if requested in copy, 
   but minimalist often uses sentence case or natural case. 
   User copy is uppercase in HTML ("BAIXE ATÉ..."). 
   I will let the HTML content dictate case but remove the CSS transform.
*/

.hero .headline-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 3rem;
    text-shadow: none;
    background: none;
    /* Removed backing */
    border: none;
    padding: 0;
}

.vsl-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    /* Soft shadow specifically for the video */
    border: 1px solid #222;
    /* Subtle border */
}

.vsl-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-cta-container {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    /* Minimal radius */
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-premium,
.btn-hero-pulse {
    background-color: var(--primary-color);
    color: #000;
    /* Removed pulse animation for minimalism, or kept it very subtle */
}

.btn-premium:hover,
.btn-hero-pulse:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.subheadline {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
}

/* Mobile VSL */
@media (max-width: 768px) {
    .vsl-container {
        aspect-ratio: 9/16;
        max-width: 320px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    display: none;
    /* Removing the red underline/glow */
}

/* Pain Points - Minimal Grid */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pain-item {
    background: transparent;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: border-color 0.3s;
}

.pain-item:hover {
    border-color: #444;
    transform: none;
    /* No movement */
    box-shadow: none;
}

.pain-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(100%);
    /* Minimalist mono icons */
    opacity: 0.7;
}

.pain-conclusion {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Problem Section */
.problem {
    background: #0a0a0a;
}

.section-text {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.errors-list {
    background: transparent;
    padding: 0;
    border: none;
    max-width: 500px;
    margin: 0 auto;
}

.errors-list h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

.errors-list ul {
    list-style: none;
}

.errors-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #222;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.errors-list li::before {
    display: none;
    /* Remove custom icon */
}

.highlight-text {
    text-align: center;
    margin-top: 2rem;
    display: block;
    color: #fff;
}

/* Solution */
.solution {
    background: #0a0a0a;
}

.solution-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid #222;
    box-shadow: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.solution-card h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.check-list {
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: '•';
    color: var(--text-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

.no-bs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #fff;
    flex-wrap: wrap;
    /* Safety for small screens */
}

.bad-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ccc;
    background: rgba(255, 51, 51, 0.1);
    /* Subtle red tint */
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 51, 51, 0.2);
    transition: all 0.3s ease;
}

.bad-item:hover {
    background: rgba(255, 51, 51, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.icon-no::before {
    content: "✕";
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .no-bs {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        /* Full width on mobile */
    }

    .bad-item {
        justify-content: center;
    }
}

/* Features */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature-item {
    background: transparent;
    border: 1px solid #333;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.cta-text {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.price-card.premium {
    border: 1px solid var(--text-color);
    /* Highlight premium with white border */
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.best-value {
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem;
    margin: -2rem -2rem 1.5rem -2rem;
    /* Stretch across top */
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.card-header {
    text-align: center;
    border-bottom: 1px solid #222;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    background: transparent;
    padding: 0 0 1.5rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0.5rem 0;
}

.ideal-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Feature List in Cards */
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.4;
}

.feature-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.feature-icon.bonus {
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.feature-list li span {
    margin-top: 2px;
}

/* Payment Info Small Text */
.payment-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
}

.includes {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Green Checkout Button */
.btn-green-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #00C853;
    /* Vibrant Green */
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 0.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-green-checkout:hover {
    background-color: #00E676;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.4);
}

.btn-basic {
    border: 1px solid #333;
    color: #fff;
    width: 100%;
}

.btn-basic:hover {
    border-color: #fff;
}

.card-footer {
    padding: 0;
    margin-top: auto;
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    border: 1px solid #222;
    padding: 3rem;
    border-radius: var(--border-radius);
    background: var(--card-bg);
}

.icon-shield {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Closing */
.options {
    text-align: center;
    color: var(--text-muted);
    margin: 2rem 0;
}

.options span {
    display: block;
    margin-bottom: 0.5rem;
}

.bad {
    text-decoration: line-through;
    opacity: 0.5;
    color: var(--highlight-color);
    /* Red strikethrough */
}

.or {
    font-weight: 700;
    margin: 1rem 0;
    text-align: center;
}

.final-decision {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
}

.btn-cta-final {
    background: #fff;
    color: #000;
    display: table;
    margin: 0 auto;
    box-shadow: none;
}

.btn-cta-final:hover {
    background: #e0e0e0;
    box-shadow: none;
}

footer {
    text-align: center;
    padding: 3rem;
    color: #444;
    font-size: 0.8rem;
    border-top: 1px solid #111;
}

/* Glitch/Animations Reduced */
.glitch {
    position: relative;
    /* Optional: minimal or no glitch */
}

.glitch::before,
.glitch::after {
    display: none;
}

/* Re-enable slight hover glitch if desired, but for minimal, plain text is better. */
.glitch:hover {
    animation: none;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Clean Play Button */
.vsl-container {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* Ensure overlay stays within corners */
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    /* Lighter overlay */
    z-index: 10;
    transition: all 0.3s ease;
}

/* Smart Player Box (Mute Style) */
.smart-player-box {
    background: rgba(220, 20, 20, 0.95);
    /* Strong Red */
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
    backdrop-filter: blur(4px);
    max-width: 90%;
}

.vsl-container:hover .smart-player-box {
    transform: scale(1.05);
}

.smart-text-top {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.smart-icon svg {
    width: 60px;
    height: 60px;
    fill: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.smart-text-bottom {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .smart-player-box {
        padding: 1rem 2rem;
    }

    .smart-text-top {
        font-size: 0.9rem;
    }

    .smart-icon svg {
        width: 40px;
        height: 40px;
    }

    .smart-text-bottom {
        font-size: 1.1rem;
    }
}

.vsl-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Solution Image */
.solution-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Mockup */
.pricing-mockup {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: block;
}

/* Upsell Popup Styles */
.upsell-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 1.5rem;
}

.upsell-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.upsell-modal {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    max-width: 340px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 51, 51, 0.1);
    pointer-events: auto;
    transform: translateY(-10px);
}

.upsell-title {
    font-size: 1.2rem;
    color: #ff3333;
    line-height: 1.1;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.upsell-subtitle {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.upsell-image {
    width: 55%;
    margin: 0 auto 0.6rem;
    display: block;
}

.upsell-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.4rem;
}

.old-price {
    font-size: 1.1rem;
    color: #ff3333;
    text-decoration: line-through;
}

.new-price {
    font-size: 2.2rem;
    color: #00c853;
    font-weight: 800;
}

.upsell-payment-note {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.8rem;
}

.upsell-features {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.upsell-features li {
    font-size: 0.75rem;
    color: #ddd;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-upsell-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #00c853;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
    margin-bottom: 0.6rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.upsell-cancel-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: opacity 0.2s;
    opacity: 0.8;
}

.upsell-cancel-link:hover {
    opacity: 1;
    color: #ffffff;
}

@media (max-width: 480px) {
    .upsell-overlay {
        padding: 0.5rem;
    }

    .upsell-modal {
        padding: 0.8rem 1rem;
    }

    .upsell-title {
        font-size: 1.1rem;
    }

    .new-price {
        font-size: 2rem;
    }

    .upsell-image {
        width: 45%;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}