:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #7c4dff;
    /* Roxo vibrante */
    --accent-dark: #6200ea;
    --accent-glow: rgba(124, 77, 255, 0.4);
    --success-color: #00e676;
    --border-color: #333333;

    --font-main: 'Inter', sans-serif;

    --max-width: 480px;
    /* Largura máxima mobile-view */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    /* Fundo page full black */
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.mobile-container {
    width: 100%;
    max-width: var(--max-width);
    background-color: var(--bg-color);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    position: relative;
}

.section {
    padding: var(--spacing-lg) var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

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

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.headline {
    font-size: 1.5rem;
    /* Ajustado para ser grande, mas caber no mobile */
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.3;
}

.sub-headline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    line-height: 1.4;
}

.eyebrow {
    display: none;
    /* Old class, safely hiding or removing usage */
    font-size: 0.875rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    text-align: center;
    /* Centralizado conforme solicitado */
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* BLOCKS STYLING */

/* Block 1: Hero */
.hero-section {
    text-align: center;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    background-color: #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    border: 1px solid var(--border-color);
}

.video-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.video-note {
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
    opacity: 0.7;
}

/* Block 2: What is */
.feature-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.feature-list li {
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-box {
    background-color: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Block 3: How it works */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: var(--card-bg);
    padding: var(--spacing-sm);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.step-number {
    background-color: var(--accent-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-item p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.summary-text {
    text-align: center;
    font-weight: 600;
    color: var(--success-color);
    margin-top: var(--spacing-sm);
}

/* Block 4: For whom */
.checklist {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.checklist li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-primary);
}

.checklist li::before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.recognition-text {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
}

/* Block 5: Deliverables */
.deliverables-grid {
    display: grid;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.deliverable-item {
    background-color: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

.deliverable-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.deliverable-item .icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.deliverable-item p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.experience-box {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(180deg, rgba(124, 77, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 12px;
    border: 1px solid rgba(124, 77, 255, 0.2);
}

.experience-box p {
    color: var(--text-primary);
}

/* Block 6: Offer */
.pricing-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: var(--spacing-lg) var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.complete-plan {
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.15);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-md);
}

.plan-name {
    color: var(--text-secondary);
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.complete-plan .plan-name {
    color: var(--accent-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.includes-label {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.plan-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.plan-features li {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
    text-align: center;
    color: var(--text-secondary);
}

.plan-highlight {
    background-color: rgba(124, 77, 255, 0.05);
    padding: var(--spacing-sm);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.complete-plan .plan-highlight {
    text-align: left;
}

.complete-plan .plan-highlight p {
    margin-bottom: 5px;
    color: var(--text-primary);
    display: block;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.primary-cta {
    background-color: var(--accent-color);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.primary-cta:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Block 7: Why Three */
.reasons-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.reasons-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.reasons-list .icon {
    font-size: 1.5rem;
}

.closing-statement {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
}

/* Block 8: FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

details.faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

details.faq-item summary {
    padding: var(--spacing-sm);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    list-style: none;
    position: relative;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    font-weight: bold;
    color: var(--accent-color);
}

details.faq-item[open] summary::after {
    content: "-";
}

details.faq-item p {
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-sm);
}

/* Block 9: CTA Final */
.final-cta-section {
    text-align: center;
    background: radial-gradient(circle at center, rgba(124, 77, 255, 0.1) 0%, transparent 70%);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 77, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(124, 77, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 77, 255, 0);
    }
}

/* Block 10: Footer */
.footer {
    text-align: center;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.copyright {
    font-size: 0.8rem;
    margin-bottom: var(--spacing-sm);
}

.legal-notice {
    font-size: 0.7rem;

    opacity: 0.6;
}

/* Custom Video Player Styles */
.video-container {
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
}

video#vsl-video {
    display: block;
    width: 100%;
    height: auto;
}

/* Unmute Overlay */
.unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align to top */
    padding-top: 20px;
    /* Space from top */
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.unmute-button {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: fadePulse 2s infinite;
    pointer-events: none;
    /* Click passes to overlay */
}

@keyframes fadePulse {
    0% {
        opacity: 0.9;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }

    100% {
        opacity: 0.9;
        transform: scale(1);
    }
}

.unmute-button svg {
    width: 18px;
    height: 18px;
}

/* Fake Progress Bar */
.progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
    pointer-events: none;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-glow);
    position: relative;
}

/* Brilho na ponta da barra */
.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #fff;
    box-shadow: 0 0 8px #fff;
    opacity: 0.8;
}