﻿/* ============================================================
   Perfect ROI — styles.css
   Extraído de: Perfect Roi - V11 HTML - Antigravity.html
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --google-blue: #4285f4;
    --google-red: #ea4335;
    --google-yellow: #fbbc04;
    --google-green: #34a853;
    --meta-blue: #0668E1;
    --dark-bg: #0a0e27;
    --dark-card: #151a35;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #34A853 0%, #225741 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Adicionamos o gradiente aqui para ser o fundo geral sem cortes */
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%); 
    background-attachment: fixed; /* Garante que o fundo fique fixo e bonito ao rolar */
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Hero Section ─────────────────────────────────────────── */
/* Sempre visível */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent; /* <-- Deixamos transparente */
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background:
        radial-gradient(circle at 20% 50%, var(--google-blue) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--google-red) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--google-blue), var(--google-green), var(--google-yellow), var(--google-red));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--google-blue);
    box-shadow: 0 10px 40px rgba(66, 133, 244, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ── Section Scroll Animations ────────────────────────────── */
/* 1. Comportamento padrão (Live Site): Invisível até scrollar */
.section {
    padding: 5rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* 2. Classe adicionada pelo Javascript quando visível */
.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. HACK PARA ELEMENTOR: Se estiver no editor, força visibilidade */
.elementor-editor-active .section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ── Section Variantes de Background ─────────────────────── */
.section--dark-bg {
    background: rgba(0, 0, 0, 0.2);
}

.section--blue-gradient {
    background: linear-gradient(180deg, transparent 0%, rgba(66, 133, 244, 0.05) 100%);
}

/* ── Section Titles & Intro ───────────────────────────────── */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-intro--sm {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

/* ── Loss Calculator ──────────────────────────────────────── */
.loss-calculator {
    background: var(--dark-card);
    border-radius: 30px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.calculator-display {
    text-align: center;
    margin-bottom: 2rem;
}

.loss-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--google-red);
    margin: 1rem 0 2.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    animation: bleeding-pulse 1.5s infinite ease-in-out;
}

.loss-amount::after {
    content: '👆 Clique para parar isso!'; /* Texto */
    position: absolute;
    top: 100%; /* Posiciona logo abaixo do número */
    left: 50%;
    transform: translateX(-50%); /* Centraliza */
    
    /* Estilo DISCRETO (sem borda, sem fundo) */
    font-size: 0.85rem; 
    color: rgba(255, 255, 255, 0.6); /* Branco levemente transparente */
    font-weight: 400; /* Peso da fonte normal */
    letter-spacing: 0.5px;
    white-space: nowrap;
    
    pointer-events: none; /* O clique passa através dele e pega no número */
}

@keyframes bleeding-pulse {
    0% { transform: scale(1); text-shadow: 0 0 0 rgba(234, 67, 53, 0); }
    50% { transform: scale(1.05); text-shadow: 0 0 20px rgba(234, 67, 53, 0.8); }
    100% { transform: scale(1); text-shadow: 0 0 0 rgba(234, 67, 53, 0); }
}

.loss-amount.profit-mode {
    animation: none;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(52, 168, 83, 0.6);
    color: var(--google-green) !important;
}

/* Esconde o balãozinho quando o usuário já ativou o Easter Egg */
.loss-amount.profit-mode::after {
    display: none;
}

.loss-label { font-size: 1.2rem; color: var(--text-muted); }
.slider-container { margin: 2rem 0; }

/* Label do slider de ticket */
.slider-ticket-label {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.slider-ticket-value {
    color: var(--google-blue);
    font-weight: 700;
}

/* Caixa de Perda Mensal */
.monthly-loss-box {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(234, 67, 53, 0.1);
    border-radius: 15px;
    border: 1px solid var(--google-red);
}

.monthly-loss-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.monthly-loss-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--google-red);
}

.monthly-loss-note {
    color: var(--text-muted);
    margin-top: 1rem;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb,
.slider::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--google-red);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(234, 67, 53, 0.5);
}

/* ── Mini CTAs ────────────────────────────────────────────── */
.mini-cta {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.mini-cta--green {
    background: var(--gradient-4);
}

.mini-cta--purple {
    background: var(--gradient-1);
}

.mini-cta--dark {
    background: var(--gradient-1);
    margin-top: 4rem;
}

.mini-cta__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mini-cta__title--dark-text {
    color: var(--dark-bg);
}

.mini-cta__text {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.mini-cta__text--dark {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--dark-bg);
}

/* ── Strategy Cards (Cards de Estratégia) ─────────────────── */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
}

.strategy-card.google::before { background: var(--google-blue); }
.strategy-card.meta::before { background: var(--meta-blue); }

.strategy-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.strategy-icon { font-size: 3rem; margin-bottom: 1rem; }
.strategy-title { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; }

.strategy-features { list-style: none; margin-top: 1.5rem; }
.strategy-features li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.5rem; }
.strategy-features li::before { content: '✓'; color: var(--google-green); font-weight: bold; }

.strategy-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Caixa "Ideal para:" nos strategy-cards */
.strategy-ideal-box {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 10px;
}

.strategy-ideal-box--blue { background: rgba(66, 133, 244, 0.1); }
.strategy-ideal-box--meta { background: rgba(6, 104, 225, 0.1); }
.strategy-ideal-box--green { background: rgba(52, 168, 83, 0.1); }

.strategy-ideal-label {
    font-weight: bold;
}

.strategy-ideal-label--blue { color: var(--google-blue); }
.strategy-ideal-label--meta { color: var(--meta-blue); }
.strategy-ideal-label--green { color: var(--google-green); }

.strategy-ideal-text {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Glossário */
.glossary-card {
    grid-column: 1 / -1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.glossary-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.glossary-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.glossary-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
}

.glossary-term-key {
    color: var(--google-blue);
}

.glossary-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

/* ── Pilares (3 Pilares do Marketing) ─────────────────────── */
.pilar-wrapper {
    margin-bottom: 4rem;
}

.pilar-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 30px;
    padding: 1rem;
}

.pilar-card--blue { border: 2px solid var(--google-blue); }
.pilar-card--meta { border: 2px solid var(--meta-blue); }
.pilar-card--green { border: 2px solid var(--google-green); }

.pilar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pilar-header-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pilar-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pilar-header h3.--blue { color: var(--google-blue); }
.pilar-header h3.--meta { color: var(--meta-blue); }
.pilar-header h3.--green { color: var(--google-green); }

.pilar-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Grid de métricas dos pilares */
.pilar-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pilar-metric {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
}

.pilar-metric--blue { background: rgba(66, 133, 244, 0.1); }
.pilar-metric--green { background: rgba(52, 168, 83, 0.1); }
.pilar-metric--yellow { background: rgba(251, 188, 4, 0.1); }

.pilar-metric__label {
    color: var(--text-muted);
}

.pilar-metric__value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pilar-metric__value--blue { color: var(--google-blue); }
.pilar-metric__value--meta { color: var(--meta-blue); }
.pilar-metric__value--green { color: var(--google-green); }
.pilar-metric__value--yellow { color: var(--google-yellow); }

/* Grid de prós e contras */
.pilar-pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pilar-pros-h4 {
    color: var(--google-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pilar-cons-h4 {
    color: var(--google-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pilar-icon-large {
    font-size: 1.5rem;
}

.pilar-list {
    list-style: none;
    padding: 0;
}

.pilar-list li {
    padding: 0.5rem 0;
    display: flex;
    gap: 0.5rem;
}

/* Caixa "Ideal Para:" dos pilares */
.pilar-ideal-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
}

.pilar-ideal-box--blue {
    background: rgba(66, 133, 244, 0.1);
    border-left: 4px solid var(--google-blue);
}

.pilar-ideal-box--meta {
    background: rgba(6, 104, 225, 0.1);
    border-left: 4px solid var(--meta-blue);
}

.pilar-ideal-box--green {
    background: rgba(52, 168, 83, 0.1);
    border-left: 4px solid var(--google-green);
}

.pilar-ideal-label {
    font-size: 1.1rem;
}

.pilar-ideal-label--blue { color: var(--google-blue); }
.pilar-ideal-label--meta { color: var(--meta-blue); }
.pilar-ideal-label--green { color: var(--google-green); }

.pilar-ideal-text {
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Caixa comparativa "Qual Escolher?" */
.compare-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.compare-box__inner {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-box h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.compare-box__highlight {
    font-size: 1.3rem;
    color: var(--google-yellow);
    font-weight: 700;
    line-height: 1.8;
}

.compare-box__desc {
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Grid de métricas da Máxima Performance */
.hybrid-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hybrid-metric {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
}

.hybrid-metric--green { background: rgba(52, 168, 83, 0.1); }
.hybrid-metric--blue { background: rgba(66, 133, 244, 0.1); }
.hybrid-metric--yellow { background: rgba(251, 188, 4, 0.1); }

.hybrid-metric__value {
    font-size: 2.5rem;
    font-weight: 800;
}

.hybrid-metric__value--green { color: var(--google-green); }
.hybrid-metric__value--blue { color: var(--google-blue); }
.hybrid-metric__value--yellow { color: var(--google-yellow); }

.hybrid-metric__label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ── Quiz ─────────────────────────────────────────────────── */
.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-progress { display: flex; justify-content: space-between; margin-bottom: 2rem; }
.progress-step { width: 30%; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 2px; position: relative; overflow: hidden; }
.progress-step.active::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--google-blue); animation: fillProgress 0.3s ease; }

@keyframes fillProgress { from { width: 0; } to { width: 100%; } }

.quiz-question { text-align: center; margin-bottom: 2rem; }
.quiz-question h3 { font-size: 1.8rem; margin-bottom: 2rem; }
.quiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quiz-option:hover { border-color: var(--google-blue); background: rgba(66, 133, 244, 0.1); transform: scale(1.05); }
.quiz-option.selected { border-color: var(--google-green); background: rgba(52, 168, 83, 0.1); }
.option-icon { font-size: 3rem; margin-bottom: 1rem; }
.option-label { font-size: 1.1rem; font-weight: 600; }

.quiz-result { text-align: center; padding: 2rem; background: var(--gradient-1); border-radius: 20px; margin-top: 2rem; }

/* ── Animações ────────────────────────────────────────────── */
.fade-in { animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Carousel ─────────────────────────────────────────────── */
.carousel-container { position: relative; max-width: 900px; margin: 0 auto; }
.carousel { overflow: hidden; border-radius: 20px; }
.carousel-inner { display: flex; transition: transform 0.5s ease; }
.carousel-item { min-width: 100%; background: var(--dark-card); padding: 3rem; border: 1px solid rgba(255, 255, 255, 0.1); }

.case-results { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; margin-top: 2rem; }
.result-value { font-size: 2.5rem; font-weight: 800; color: var(--google-green); }
.result-value.negative { color: var(--google-red); }
.result-item { text-align: center; }
.result-label { color: var(--text-muted); margin-top: 0.5rem; }

.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); border: none; color: white; font-size: 1.5rem; cursor: pointer; transition: all 0.3s ease; }
.carousel-btn:hover { background: var(--google-blue); transform: scale(1.1); }

/* ── ROI Simulator ────────────────────────────────────────── */
.roi-simulator { max-width: 800px; margin: 0 auto; background: var(--dark-card); border-radius: 30px; padding: 3rem; border: 1px solid rgba(255, 255, 255, 0.1); }
.simulator-inputs { margin-bottom: 2rem; }

.simulator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.input-group label { display: block; margin-bottom: 0.5rem; color: var(--text-muted); font-weight: 600; }

.input-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 10px;
}

.currency-input { font-size: 2rem; font-weight: 700; color: var(--google-blue); }

/* Display de slider amarelo (taxa de fechamento) */
.slider-display--yellow .currency-input {
    color: var(--google-yellow);
}

.roi-results { background: rgba(52, 168, 83, 0.1); border: 2px solid var(--google-green); border-radius: 20px; padding: 2rem; text-align: center; margin-top: 2rem; }
.roi-value { font-size: 4rem; font-weight: 800; color: var(--google-green); margin: 1rem 0; }
.roi-breakdown { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.breakdown-item { background: rgba(255, 255, 255, 0.05); padding: 1rem; border-radius: 10px; }
.breakdown-value { font-size: 1.5rem; font-weight: 700; }

/* Select & Slider Fixes */
select#sector-select { width: 100%; padding: 12px; border-radius: 10px; background-color: rgba(255, 255, 255, 0.05); color: var(--text-light); border: 1px solid rgba(255, 255, 255, 0.1); cursor: pointer; font-size: 1rem; }
select#sector-select option { background-color: var(--dark-card); color: white; padding: 10px; }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-top: 5px; font-weight: 500; }
.roi-disclaimer { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.8rem; color: var(--text-muted); text-align: center; opacity: 0.7; line-height: 1.4; }

/* ROI Badge (dinâmico, cor definida por JS) */
.roi-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ── Benchmarks Table ─────────────────────────────────────── */
.benchmarks-table { max-width: 1000px; margin: 0 auto; background: var(--dark-card); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); }
.table-filters { padding: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; gap: 1rem; flex-wrap: wrap; }
.filter-btn { padding: 0.75rem 1.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 25px; color: white; cursor: pointer; transition: all 0.3s ease; font-weight: 600; }
.filter-btn:hover, .filter-btn.active { background: var(--google-blue); border-color: var(--google-blue); }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 1.5rem; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
th { background: rgba(255, 255, 255, 0.05); font-weight: 700; color: var(--google-blue); }
tr:hover { background: rgba(255, 255, 255, 0.02); }
.metric-value { font-weight: 700; font-size: 1.1rem; }
.metric-good { color: var(--google-green); }
.metric-average { color: var(--google-yellow); }

/* ── Benchmarks Dinâmicos ─────────────────────────────────── */
.benchmarks-dynamic {
    max-width: 900px;
    margin: 0 auto;
}

.benchmark-header {
    text-align: center;
    margin-bottom: 2rem;
}

.benchmark-header h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.benchmark-sector-name {
    color: var(--google-blue);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.comparison-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.comparison-card__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.comparison-col {
    text-align: left;
}

.comparison-col--right {
    text-align: right;
}

.comparison-col__sublabel {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comparison-col__sublabel--blue {
    color: var(--google-blue);
}

.comparison-col__sublabel--green {
    color: var(--google-green);
}

.comparison-col__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.comparison-col__value--blue {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--google-blue);
}

.comparison-col__value--green {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--google-green);
}

.comparison-card__note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.comparison-verdict {
    font-size: 0.85rem;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
}

.benchmark-insight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(66, 133, 244, 0.1) 0%, rgba(52, 168, 83, 0.1) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--google-yellow);
}

.benchmark-insight h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Checklist ────────────────────────────────────────────── */
.checklist { max-width: 800px; margin: 0 auto; background: var(--dark-card); border-radius: 20px; padding: 3rem; border: 1px solid rgba(255, 255, 255, 0.1); }
.checklist-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; margin-bottom: 1rem; background: rgba(255, 255, 255, 0.05); border-radius: 15px; cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; }
.checklist-item:hover { border-color: var(--google-blue); }
.checklist-item.checked { background: rgba(52, 168, 83, 0.1); border-color: var(--google-green); }
.checkbox { width: 30px; height: 30px; border-radius: 8px; border: 2px solid rgba(255, 255, 255, 0.3); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; flex-shrink: 0; }
.checklist-item.checked .checkbox { background: var(--google-green); border-color: var(--google-green); }
.checkbox::after { content: '✓'; color: white; font-weight: bold; font-size: 1.2rem; opacity: 0; transform: scale(0); transition: all 0.3s ease; }
.checklist-item.checked .checkbox::after { opacity: 1; transform: scale(1); }
.checklist-text { flex: 1; }
.checklist-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem; }
.checklist-description { color: var(--text-muted); font-size: 0.9rem; }

.progress-bar { width: 100%; height: 10px; background: rgba(255, 255, 255, 0.1); border-radius: 5px; margin-top: 2rem; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-3); border-radius: 5px; transition: width 0.5s ease; }
.progress-text { text-align: center; margin-top: 1rem; font-size: 1.2rem; font-weight: 700; }

/* ── CTA & Buttons ────────────────────────────────────────── */
.cta-section { background: var(--gradient-1); padding: 5rem 2rem; text-align: center; border-radius: 30px; margin: 3rem 0; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.cta-subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.9; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 1.2rem 3rem; border-radius: 50px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; border: none; }
.btn-primary { background: white; color: #667eea; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: #667eea; }

/* Stats row no CTA Final */
.cta-stats {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat__value {
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-stat__label {
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    border: 2px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    display: block;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

@keyframes pulse-whatsapp { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { max-width: 800px; margin: 0 auto; position: relative; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 4px; height: 100%; background: rgba(255, 255, 255, 0.1); }
.timeline-item { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content { width: 45%; background: var(--dark-card); padding: 2rem; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.1); position: relative; }
.timeline-dot { width: 20px; height: 20px; background: var(--google-blue); border-radius: 50%; position: absolute; left: 50%; transform: translateX(-50%); z-index: 1; }
.timeline-number { font-size: 2rem; font-weight: 800; color: var(--google-blue); margin-bottom: 0.5rem; }
.timeline-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.timeline-description { color: var(--text-muted); }

/* ── Cases Bento Grid ─────────────────────────────────────── */
.cases-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid expansivo para Desktop */
@media (min-width: 992px) {
    .case-card.large { grid-column: span 2; }
}

.case-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Linhas de topo coloridas baseadas na estratégia */
.case-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
.case-card.hybrid::before { background: var(--gradient-1); }
.case-card.google::before { background: var(--google-blue); }
.case-card.meta::before { background: var(--meta-blue); }
.case-card.gbp::before { background: var(--google-green); }

.case-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 10px; }
.case-title { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 0.2rem; }
.case-subtitle { font-size: 0.85rem; color: var(--text-muted); }

.case-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.case-tag { font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.tag-google { background: rgba(66, 133, 244, 0.1); color: var(--google-blue); border: 1px solid rgba(66, 133, 244, 0.2); }
.tag-meta { background: rgba(6, 104, 225, 0.1); color: var(--meta-blue); border: 1px solid rgba(6, 104, 225, 0.2); }
.tag-gbp { background: rgba(52, 168, 83, 0.1); color: var(--google-green); border: 1px solid rgba(52, 168, 83, 0.2); }
.tag-ai { background: rgba(156, 39, 176, 0.1); color: #e040fb; border: 1px solid rgba(156, 39, 176, 0.2); }

.verified-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; color: #a0aec0; background: rgba(255, 255, 255, 0.05); padding: 4px 8px; border-radius: 6px; }
.verified-badge svg { width: 12px; height: 12px; fill: var(--google-green); }

.case-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; margin: 1.5rem 0; padding: 1.5rem; background: rgba(255, 255, 255, 0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.03); }
.metric-main { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.3rem; }
.metric-main.green { color: var(--google-green); }
.metric-main.blue { color: var(--google-blue); }
.metric-main.purple { color: #e040fb; }
.metric-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.case-context { margin-top: auto; padding-top: 1.5rem; border-top: 1px dashed rgba(255,255,255,0.1); }
.context-item { margin-bottom: 0.5rem; font-size: 0.9rem; line-height: 1.5; }
.context-item span { color: var(--text-light); font-weight: 600; }
.context-desc { color: var(--text-muted); }

/* Botão de ação centralizado */
.section-cta-btn-row {
    text-align: center;
    margin-top: 4rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--dark-card);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-legal {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--google-blue);
    text-decoration: none;
}

/* ── Easter Egg ───────────────────────────────────────────── */
.easter-egg-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

.easter-egg-terminal {
    color: #00ff00;
    font-size: 10px;
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    padding: 10px;
    border-left: 3px solid #ff0000;
    opacity: 0.8;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 300px;
    border-radius: 0 4px 4px 0;
}

.easter-egg-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

/* ── Modais ───────────────────────────────────────────────── */
.loading { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: white; animation: spin 1s linear infinite; will-change: transform; }
@keyframes spin { to { transform: rotate(360deg); } }

.dont-click-btn { background: rgba(255, 0, 0, 0.1); border: 1px solid rgba(255, 0, 0, 0.3); color: #ff6b6b; padding: 8px 15px; font-size: 0.8rem; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; margin-top: 1rem; display: inline-block; text-decoration: none; }
.dont-click-btn:hover { background: red; color: white; box-shadow: 0 0 15px red; transform: scale(1.1) rotate(-2deg); }

.money-rain { position: fixed; top: -50px; font-size: 24px; z-index: 9999; animation: fall 3s linear forwards; pointer-events: none; will-change: transform; }
@keyframes fall { to { transform: translateY(110vh) rotate(720deg); } }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 10000; display: none; backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: block; opacity: 1; }
.secret-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); background: var(--dark-card); padding: 3rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 10001; text-align: center; max-width: 90%; width: 500px; display: none; opacity: 0; transition: all 0.3s ease; }
.secret-modal.active { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 2rem; color: var(--text-muted); cursor: pointer; transition: color 0.3s; line-height: 1; }
.close-modal:hover { color: white; }

.modal-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-code-box {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.modal-code-label {
    font-size: 0.9rem;
}

.modal-code-value {
    font-size: 1.5rem;
    color: var(--google-yellow);
    letter-spacing: 2px;
}

/* ── Brand Badge ──────────────────────────────────────────── */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(66, 133, 244, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation:
        badge-enter 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        pulse-glow 3s ease-in-out 1s infinite alternate;
    opacity: 0;
    transform: translateY(-20px);
    will-change: transform, box-shadow;
}

.brand-text {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    margin-right: -0.4em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(251, 188, 4, 0.6));
}

@keyframes badge-enter {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
        border-color: rgba(66, 133, 244, 0.3);
        background: rgba(255, 255, 255, 0.03);
    }
    100% {
        box-shadow: 0 0 25px 2px rgba(66, 133, 244, 0.25);
        border-color: rgba(66, 133, 244, 0.7);
        background: rgba(255, 255, 255, 0.06);
    }
}

/* ── Media Queries ────────────────────────────────────────── */
@media (max-width: 767px) {
    /* Controle de distância do topo aqui */
    .hero {
        align-items: flex-start !important;
        padding-top: 50px !important;
        padding-bottom: 60px !important;
    }
    .timeline-content { width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; padding: 1.5rem !important; }
    .timeline-item { flex-direction: column !important; padding-left: 2rem; border-left: 2px solid rgba(255,255,255,0.1); }
    .timeline::before { display: none; }
    .timeline-dot { left: 0 !important; transform: translate(-50%, 0) !important; }
    .hero h1 { font-size: 2.2rem; }
    .loss-amount { font-size: 2.5rem !important; }
    .stat-number { font-size: 2.5rem; }
    .container { padding: 0 15px; }
    .section { padding: 3rem 0; }
    .loss-calculator, .quiz-container, .roi-simulator, .checklist, .carousel-item { padding: 1.5rem !important; }
    .stat-grid { grid-template-columns: 1fr !important; }
    .simulator-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .benchmarks-table { display: block; overflow-x: auto; white-space: nowrap; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ── Auditoria Dinâmica ───────────────────────────────────── */
.audit-result-box {
    margin-top: 2rem;
    background: rgba(10, 14, 39, 0.8); /* Fundo escuro */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(20px);
}

.audit-result-box.visible {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--google-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.audit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.audit-icon {
    font-size: 1.5rem;
}

#audit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

#audit-message {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Caixa de Dica Específica */
.audit-tip {
    background: rgba(251, 188, 4, 0.1); /* Amarelo Google */
    border-left: 3px solid var(--google-yellow);
    padding: 10px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-top: 1rem;
    display: block;
}

.audit-tip.box-hidden {
    display: none;
}

/* ── Blocos de Transição Narrativa ────────────────────────── */
.transition-block {
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.transition-block::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: -1;
}

.transition-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
    position: relative;
}

.transition-block::after {
    content: '↓';
    display: block;
    margin: 2rem auto 0;
    font-size: 1.5rem;
    color: var(--google-blue);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 767px) {
    .transition-block {
        padding: 2rem 1rem;
    }
    .transition-text {
        font-size: 1.1rem;
    }
}

/* ── VSL Video Style (CORRIGIDO V2) ── */
.vsl-container {
    position: relative;
    width: 95%; /* Mobile: Ocupa quase toda a largura da tela */
    max-width: 1000px; /* Desktop: Limita para não ficar gigante demais */
    margin: 2.5rem auto 1rem; /* Centraliza na página */
    z-index: 10;
    display: block;
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    /* O SEGREDO: Padding-bottom 56.25% cria a proporção exata 16:9 */
    padding-bottom: 56.25%; 
    height: 0;
    
    /* Estilo da Borda e Arredondamento */
    border-radius: 20px;
    background: #000;
    border: 2px solid rgba(66, 133, 244, 0.5); /* Borda Neon Azul visível */
    box-shadow: 0 0 25px rgba(66, 133, 244, 0.3); /* Brilho externo da borda */
    
    /* Força o arredondamento no iPhone/Safari */
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform: translateZ(0); 
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Efeito Glow (Luz de Fundo Pulsante) */
.vsl-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 102%;
    height: 102%;
    background: linear-gradient(90deg, #4285f4, #0668E1, #9c27b0);
    filter: blur(50px);
    opacity: 0.6; /* Aumentei a opacidade para aparecer mais */
    z-index: -1; /* Fica atrás do vídeo */
    border-radius: 40px;
    animation: pulse-glow-video 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow-video {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* Ajuste Fino para Desktop */
@media (min-width: 768px) {
    .vsl-container {
        width: 80%; /* No desktop não precisa ser tão largo quanto no mobile */
        margin-top: 3rem;
    }
}


/* ── CORREÇÕES DE ESPAÇAMENTO DESKTOP ── */
@media (min-width: 768px) {
    
    /* 1. ESPAÇO DO TOPO DA PÁGINA */
    .hero {
        align-items: flex-start !important; /* Para de tentar centralizar forçado */
        padding-top: 60px !important; /* Empurra tudo para baixo (espaço do topo) */
        padding-bottom: 60px !important; /* Espaço no fundo */
        height: auto !important; /* Deixa a altura se adaptar ao conteúdo */
        min-height: 100vh;
    }

    /* 2. DISTÂNCIA ENTRE A BADGE E O TÍTULO */
    .brand-badge {
        margin-bottom: 0.5rem !important; /* Reduzi de 2rem para 1rem */
    }

    /* 3. DISTÂNCIA ENTRE O TÍTULO E O SUBTÍTULO */
    .hero h1 {
        margin-bottom: 0.5rem !important; /* Reduzi de 1rem para 0.5rem */
        line-height: 1.1; /* Título mais compacto */
    }

    /* 4. DISTÂNCIA ENTRE O SUBTÍTULO E O VÍDEO */
    .hero-subtitle {
        margin-bottom: 1.5rem !important; /* Reduzi de 3rem para 2rem */
    }

    /* TAMANHO DO VÍDEO NO DESKTOP */
    .vsl-container {
        margin-top: 1rem !important; /* Distância extra acima do vídeo */
        width: 60% !important; /* Se achar o vídeo grande, diminua essa % */
    }
}
