:root {
    --primary-color: #ffca28;
    /* Amarelo "Bebida" */
    --accent-color: #00e676;

    /* Verde Neon/Venda - Mais vibrante */
}

/* VSL PROTECTION LAYER */
.vsl-container {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: default;
    background: transparent;
    pointer-events: none;
    /* Allows clicking the play button underneath */
}

.vsl-container iframe {
    z-index: 1;
}

:root {

    --accent-dark: #00c853;
    --bg-color: #000000;
    /* Preto absoluto para premium */
    --surface-color: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --radius: 16px;
    /* Mais arredondado */
    --font-main: 'Inter',
        system-ui,
        -apple-system,
        sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Ensure full black background including scrollbar track area if possible */
html {
    background-color: var(--bg-color);
    scrollbar-color: #333 #000;
    /* Firefox */
    scrollbar-width: thin;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

/* Custom Scrollbar for Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
    background: #000;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    background-color: var(--bg-color);
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    width: 100%;
}

/* --- Layout Elements & Specific IDs --- */

#intro-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

#loading-screen {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Intermediate Page (New) */
#intermediate-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.section {
    padding: 40px 24px;
    border-bottom: 1px solid #222;
    width: 100%;
}

/* --- Utils & Animation --- */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.95rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.accent {
    color: var(--accent-color);
}

.white-text {
    color: #fff;
}

.bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

/* --- Buttons --- */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: #000;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    animation: pulse-green 2s infinite;
    font-weight: 800;
    /* BOLD */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.6);
}

.btn-option {
    background-color: var(--surface-color);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    margin-bottom: 15px;
    justify-content: flex-start;
    padding-left: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.btn-option:hover {
    border-color: var(--primary-color);
    background-color: #252525;
}

.btn-option:active {
    transform: scale(0.98);
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.btn-white {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation: pulse-white 2s infinite;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- Components --- */
.card {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.progress-container {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 10px;
    margin: 20px 0 30px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), #ffe082);
    border-radius: 10px;
    transition: width 0.4s ease-out;
    box-shadow: 0 0 15px var(--primary-color);
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid #333;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- CAROUSEL (NEW) --- */
.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 20px 0;
    /* Hide scrollbar */
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* Smooth scroll */
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    scroll-snap-align: center;
    flex: 0 0 70%;
    /* Shows a bit of next slide */
    background-color: #000;
    /* Seamless background */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #444;
    display: flex;
    flex-direction: column;
    /* Stack vertically! */
}

.carousel-img {
    width: 100%;
    aspect-ratio: 9/13;
    /* Leave room for text */
    object-fit: cover;
    /* Fill the top area */
    object-position: top center;
}

.carousel-details {
    padding: 15px;
    background-color: #111;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-info {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-quote {
    font-size: 0.95rem;
    color: #fff;
    font-style: italic;
    line-height: 1.3;
    margin: 0;
}

.carousel-caption {
    padding: 15px;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

/* CAROUSEL NAV (Desktop support) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--primary-color);
}

.carousel-btn.prev {
    left: 5px;
}

.carousel-btn.next {
    right: 5px;
}

/* --- TESTIMONIALS VERTICAL (NEW) --- */
.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    margin-right: 15px;
    object-fit: cover;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

/* Existing Grids */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.proof-item {
    aspect-ratio: 1/1;
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #444;
}

.proof-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Offer & FAQ */
.offer-box {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, rgba(255, 202, 40, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 202, 40, 0.3);
}

.price-old {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.benefits-list li svg {
    min-width: 24px;
    margin-right: 15px;
    color: var(--accent-color);
}

.guarantee-badge {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    display: block;
}

.secure-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0.7;
    margin-top: 15px;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

/* ... existing code ... */

.btn-primary {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    animation: pulse-green 2s infinite;
    font-weight: 800;
    /* BOLD */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secure-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0.7;
    margin-top: 15px;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #ccc;
    font-size: 1rem;
    padding-right: 20px;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 20px;
}

.arrow {
    transition: transform 0.3s;
}

.arrow.rotate {
    transform: rotate(180deg);
}

.mini-proof {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.mini-proof img {
    width: 100%;
    display: block;
}

.safe-badge {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.highlight-badge {
    background: rgba(255, 202, 40, 0.2);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

/* --- PREMIUM SALES STYLES --- */
.premium-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
    text-align: left;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #eee;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.story-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 0;
}

.story-content {
    padding: 25px;
    text-align: left;
}

.story-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #ccc;
}

.offer-premium {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, rgba(255, 202, 40, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    box-shadow: 0 0 30px rgba(255, 202, 40, 0.15);
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.diagnostic-card {
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.05);
    /* Soft glow */
    border-radius: 24px;
    padding: 30px 20px;
    margin: 20px 0 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.diagnostic-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.8) 0%, transparent 70%);
    opacity: 0.6;
}

.diagnostic-bullets {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.diagnostic-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
}

.diagnostic-bullets li:last-child {
    margin-bottom: 0;
}