/* CSS Moderno para a Index do Franqueado (Sevencar) */

/* Importação de Fontes Premium */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Design System - Variáveis */
:root {
    /* Paleta de Cores Base */
    --color-primary: #1E5AA8;
    --color-primary-dark: #0f3669;
    --color-primary-light: #4A83D4;
    --color-secondary: #10b981;
    --color-secondary-dark: #059669;
    
    /* Tons de Fundo (Neumorphism / Glassmorphism Base) */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gradient-hero: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    --bg-gradient-section: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    
    /* Tipografia */
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-soft: #334155;
    --text-light: #ffffff;
    
    /* Espaçamentos e Bordas */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 9999px;
    
    /* Sombras Premium */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 14px 30px -10px rgba(15, 23, 42, 0.12), 0 10px 16px -12px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 28px 60px -18px rgba(15, 23, 42, 0.2);
    --shadow-glow: 0 10px 30px rgba(30, 90, 168, 0.3);
    --shadow-glow-success: 0 10px 30px rgba(16, 185, 129, 0.3);
    --shadow-card-hover: 0 28px 50px -18px rgba(30, 90, 168, 0.2);
    
    /* Transições */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Básico e Tipografia */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    background:
        radial-gradient(circle at top right, rgba(74, 131, 212, 0.04), transparent 28%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.03), transparent 24%),
        linear-gradient(135deg, #fdfefe 0%, #f8fafc 100%); /* Degradê sutil para o fundo */
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

p {
    line-height: 1.7;
    color: var(--text-muted);
}

.container {
    position: relative;
    z-index: 2;
}

.progress-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.progress-top__bar {
    height: 100%;
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary-light) 60%, var(--color-primary) 100%);
}

.section-nav {
    position: fixed;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1500;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.section-nav__item {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--text-soft);
    transition: var(--transition-fast);
    text-align: left;
    min-width: 140px;
}

.section-nav__item i {
    color: var(--color-primary);
    opacity: 0.95;
}

.section-nav__label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-nav__item:hover {
    background: rgba(30, 90, 168, 0.08);
    color: var(--text-dark);
}

.section-nav__item.is-active {
    background: linear-gradient(135deg, rgba(30, 90, 168, 0.16), rgba(16, 185, 129, 0.12));
    color: var(--text-dark);
}

.section-nav__item.is-active i {
    color: var(--color-secondary-dark);
}

.toast-stack {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    pointer-events: none;
    background: rgba(15, 23, 42, 0.92);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 340px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    font-weight: 600;
}

.toast--success {
    background: rgba(16, 185, 129, 0.92);
}

.toast--in {
    transform: translateY(0);
    opacity: 1;
}

.toast--out {
    opacity: 0;
    transform: translateY(8px);
}

.engagement-progress {
    position: fixed;
    left: 18px;
    bottom: 88px;
    z-index: 1500;
    width: 320px;
    max-width: calc(100vw - 36px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 14px 14px 12px 14px;
}

.engagement-progress__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.engagement-progress__title {
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.engagement-progress__value {
    font-weight: 900;
    color: var(--color-primary);
}

.engagement-progress__bar {
    margin-top: 10px;
    height: 10px;
    background: rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    overflow: hidden;
}

.engagement-progress__barFill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary-light) 55%, var(--color-primary) 100%);
    border-radius: 999px;
    transition: width 0.35s ease;
}

.engagement-progress__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(30, 90, 168, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.86rem;
}

.badge i {
    color: var(--color-secondary-dark);
}

/* ----------------------------------------------------
   Animações Globais
------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animações específicas para o Hero */
@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------
   Header Customizado (Transparente -> Glassmorphism)
------------------------------------------------------- */
.header {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: var(--transition-smooth);
}
.header .nav-logo .logo {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
    transition: var(--transition-smooth);
}
.header .nav-link {
    color: var(--text-light) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    font-weight: 500;
}
.header .nav-link:hover {
    color: var(--color-primary-light) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-pill);
}
.header .btn-login {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
    border-radius: var(--radius-pill) !important;
}
.header .btn-login:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}
.header .hamburger span {
    background: var(--text-light) !important;
}

/* Header Scrolled */
.header.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: var(--shadow-sm) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.header.scrolled .nav-logo .logo {
    filter: brightness(1) invert(0) !important;
}
.header.scrolled .nav-link {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}
.header.scrolled .btn-login {
    background: var(--color-primary) !important;
    border: none !important;
    box-shadow: var(--shadow-glow) !important;
}

/* ----------------------------------------------------
   Hero Section Principal
------------------------------------------------------- */
.main-hero {
    background: var(--bg-gradient-hero);
    color: var(--text-light);
    padding: 200px 0 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Nova imagem de fundo */
    background-image: url('https://images.pexels.com/photos/170811/pexels-photo-170811.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260'); /* Imagem de carro */
    background-size: cover; /* Ajuste para cobrir a área */
    background-position: center 0px; /* Posição inicial para parallax */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Essencial para o efeito parallax */
    /* Efeito de escurecimento para o texto */
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6); /* Overlay mais escuro */
}

/* @keyframes heroZoomIn {
    from {
        background-size: 100%;
    }
    to {
        background-size: 110%;
    }
} */
/* Abstract Shapes in background */
.main-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 90, 168, 0.7) 0%, rgba(26, 79, 150, 0.7) 100%), /* Overlay de cor mais forte */
                radial-gradient(circle at 100% 100%, rgba(255,255,255,0.08) 0%, transparent 30%), /* Padrão mais visível */
                radial-gradient(circle at 0% 0%, rgba(255,255,255,0.08) 0%, transparent 30%); /* Padrão mais visível */
    z-index: 1;
}
.main-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Ajustado para ficar bem na borda */
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-white) 0%, rgba(255,255,255,0) 100%); /* Degradê suave para o branco */
    filter: blur(0px); /* Removido o blur para um degradê mais limpo */
    z-index: 2;
    transform: skewY(0deg); /* Removido o skew para uma linha reta */
}

html.ab-b .main-hero::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.56) 0%, rgba(30, 90, 168, 0.72) 70%),
                radial-gradient(circle at 100% 100%, rgba(255,255,255,0.08) 0%, transparent 30%),
                radial-gradient(circle at 0% 0%, rgba(255,255,255,0.08) 0%, transparent 30%);
}

html.ab-b .btn-main-cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #22c55e 100%);
}

html.ab-b .btn-main-cta:hover {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, #16a34a 100%);
}
.main-hero .container {
    position: relative;
    z-index: 3;
}
.main-hero h1 {
    font-size: 3.8rem; /* Aumentado para mais impacto */
    font-weight: 900; /* Mais negrito */
    letter-spacing: -0.05em; /* Mais apertado */
    margin-bottom: 28px; /* Mais espaçamento */
    line-height: 1.15; /* Melhor legibilidade */
    color: var(--text-light);
    text-shadow: 0 6px 15px rgba(0,0,0,0.4); /* Sombra mais forte */
}
.main-hero .highlight {
    color: var(--color-secondary);
    font-size: 3.2rem; /* Aumentado */
}
.main-hero .subtitle {
    font-size: 1.35rem; /* Aumentado */
    margin-bottom: 45px; /* Mais espaçamento */
    opacity: 0.95; /* Mais visível */
    max-width: 850px; /* Mais largura */
    margin-left: auto;
    margin-right: auto;
    font-weight: 500; /* Mais peso */
    color: rgba(255, 255, 255, 0.95); /* Mais visível */
    text-shadow: 0 3px 8px rgba(0,0,0,0.3); /* Sombra mais forte */
}

.main-hero h1.hero-text-animated {
    animation: heroTextIn 1s ease-out forwards;
    opacity: 0; /* Garante que o texto comece invisível */
}

.main-hero .subtitle.hero-text-animated {
    animation: heroTextIn 1s ease-out forwards;
    animation-delay: 0.3s; /* Atraso para o subtítulo */
    opacity: 0; /* Garante que o texto comece invisível */
}

.main-hero .hero-buttons-animated {
    animation: heroButtonsIn 1s ease-out forwards;
    animation-delay: 0.6s; /* Atraso para os botões */
    opacity: 0; /* Garante que os botões comecem invisíveis */
}

/* Botoes Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.btn-main-cta {
    background: var(--color-secondary);
    color: var(--text-light);
    padding: 18px 45px; /* Aumentado */
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 1.2rem; /* Aumentado */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow-success);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-main-cta:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-6px) scale(1.03); /* Mais impacto no hover */
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5); /* Sombra mais pronunciada */
    color: var(--text-light);
}
.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.12); /* Mais visível */
    backdrop-filter: blur(18px); /* Blur mais forte */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borda mais definida */
    color: var(--text-light);
    padding: 18px 45px; /* Aumentado */
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 1.2rem; /* Aumentado */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}
.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.25); /* Mais visível no hover */
    border-color: rgba(255, 255, 255, 0.6); /* Borda mais clara */
    transform: translateY(-6px) scale(1.03); /* Mais impacto no hover */
    color: var(--text-light);
}

.btn-ripple {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-ripple::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.btn-ripple:active::after {
    opacity: 1;
    transform: scale(1);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(16, 185, 129, 0.6);
    outline-offset: 3px;
    border-radius: 12px;
}

/* ----------------------------------------------------
   Seções Comuns (Vídeos, Mercado, Apresentação)
------------------------------------------------------- */
.section-padding {
    padding: 100px 0;
    position: relative;
}
.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg-light); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px; /* Aumentado o espaçamento */
    color: var(--text-dark);
    line-height: 1.2; /* Ajustado para melhor legibilidade */
    letter-spacing: -0.04em; /* Mais apertado para títulos */
}
.section-header p {
    font-size: 1.1rem; /* Levemente menor para subtítulos */
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted); /* Usando text-muted para consistência */
    font-weight: 400; /* Mais leve */
    line-height: 1.7;
}

.section-header h2 {
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 92px;
    height: 6px;
    margin: 16px auto 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: 0 10px 30px rgba(30, 90, 168, 0.18);
}

.videos-section { --section-accent: var(--accent-videos); }
.presentation-section { --section-accent: var(--accent-apresentacao); }
.market-section { --section-accent: var(--accent-mercado); }
.comparison-section { --section-accent: var(--accent-comparacao); }
.revenue-section { --section-accent: var(--accent-faturamento); }
.numbers-section { --section-accent: var(--accent-numeros); }
.benefits-section { --section-accent: var(--accent-beneficios); }
.faq { --section-accent: var(--accent-faq); }

.videos-section .section-header h2::after,
.presentation-section .section-header h2::after,
.market-section .section-header h2::after,
.comparison-section .section-header h2::after,
.numbers-section .section-header h2::after,
.benefits-section .section-header h2::after,
.faq .section-header h2::after {
    background: linear-gradient(90deg, var(--section-accent) 0%, rgba(16, 185, 129, 1) 100%);
}

.videos-section,
.presentation-section,
.market-section,
.comparison-section,
.numbers-section,
.benefits-section,
.faq {
    overflow: hidden;
}

.videos-section::before,
.presentation-section::before,
.market-section::before,
.comparison-section::before,
.numbers-section::before,
.benefits-section::before,
.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.9;
}

.presentation-section::before {
    background: radial-gradient(circle at 10% 15%, rgba(14, 165, 233, 0.14) 0%, transparent 34%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.10) 0%, transparent 30%);
}

.market-section::before {
    background: radial-gradient(circle at 10% 15%, rgba(22, 75, 249, 0.14) 0%, transparent 34%),
                radial-gradient(circle at 90% 80%, rgba(30, 90, 168, 0.10) 0%, transparent 30%);
}

.comparison-section::before {
    background: radial-gradient(circle at 10% 15%, rgba(34, 192, 197, 0.14) 0%, transparent 34%),
                radial-gradient(circle at 90% 80%, rgba(30, 90, 168, 0.10) 0%, transparent 30%);
}

.numbers-section::before {
    background: radial-gradient(circle at 10% 15%, rgba(30, 90, 168, 0.14) 0%, transparent 34%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.10) 0%, transparent 30%);
}

.benefits-section::before {
    background: radial-gradient(circle at 10% 15%, rgba(85, 88, 247, 0.14) 0%, transparent 34%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.10) 0%, transparent 30%);
}

.faq::before {
    background: radial-gradient(circle at 10% 15%, rgba(15, 23, 42, 0.08) 0%, transparent 34%),
                radial-gradient(circle at 90% 80%, rgba(30, 90, 168, 0.10) 0%, transparent 30%);
}

.videos-section .container,
.presentation-section .container,
.market-section .container,
.comparison-section .container,
.numbers-section .container,
.benefits-section .container,
.faq .container {
    position: relative;
    z-index: 2;
}

/* ----------------------------------------------------
   Vídeos e Cards
------------------------------------------------------- */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .videos-section .container {
        display: grid;
        grid-template-columns: 360px 1fr;
        gap: 42px;
        align-items: start;
    }

    .videos-section .section-header {
        text-align: left;
        margin-bottom: 0;
        position: sticky;
        top: 110px;
    }

    .videos-section .section-header h2::after {
        margin-left: 0;
        margin-right: auto;
    }
}
.modern-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: var(--transition-smooth);
}
.modern-card:hover {
    transform: translateY(-12px); /* Mais elevação */
    box-shadow: var(--shadow-card-hover);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.video-wrapper.shorts-wrapper {
    padding-top: 177.77%;
    max-height: 80vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-wrapper iframe, .video-wrapper .video-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient-hero);
    color: var(--text-light);
}
.video-placeholder i { font-size: 4rem; margin-bottom: 15px; opacity: 0.8; }
.video-placeholder span { font-size: 1.2rem; font-weight: 600; }
.video-info {
    padding: 30px;
    text-align: center;
}

.video-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    background: rgba(30, 90, 168, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 10px 14px;
    border-radius: 999px;
    transition: var(--transition-fast);
}

.video-open:hover {
    background: rgba(30, 90, 168, 0.1);
    transform: translateY(-2px);
}
.video-info h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 700; color: var(--text-dark); }
.video-info p { font-size: 1rem; margin: 0; color: var(--text-muted); line-height: 1.6; }

/* ----------------------------------------------------
   Carrossel PDF
------------------------------------------------------- */
.presentation-swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 70px;
}
.presentation-swiper .swiper-pagination { bottom: 0 !important; }
.presentation-swiper .swiper-pagination-bullet-active { background: var(--color-primary); }

.presentation-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 900px;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
}
.presentation-swiper .swiper-slide canvas {
    display: block; width: 100%; height: auto;
}
.mobile-rotate-hint {
    display: none;
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-top: 20px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#pdf-loading {
    text-align: center; padding: 50px; font-size: 1.2rem;
    color: var(--color-primary); font-weight: 600;
}
#pdf-loading i { margin-right: 10px; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ----------------------------------------------------
   Tabela Comparativa (Estilo SaaS Pricing)
------------------------------------------------------- */
.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(148, 163, 184, 0.16);
}
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: var(--text-dark);
    padding: 25px 20px;
    font-size: 1.2rem;
    font-weight: 800;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}
.comparison-table th:last-child {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--text-light);
}
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 1.05rem;
    color: var(--text-muted); /* Usando text-muted */
    font-weight: 400;
}
.comparison-table td:first-child {
    text-align: left; font-weight: 600; color: var(--text-dark);
}
.comparison-table tbody tr:hover { background: rgba(30, 90, 168, 0.03); }
.check-icon {
    color: var(--color-secondary); font-size: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}
.x-icon {
    color: #ef4444; font-size: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}

/* ----------------------------------------------------
   Estatísticas / Números / Faturamento
------------------------------------------------------- */
.revenue-section, .guarantee-section, .final-cta {
    background: var(--bg-gradient-hero);
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.revenue-section::before, .guarantee-section::before, .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.18), transparent 22%),
        radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.2), transparent 18%);
    pointer-events: none;
}

.revenue-section h2, .guarantee-section h2, .final-cta h2 {
    color: var(--text-light);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.revenue-section p, .guarantee-section p, .final-cta p {
    color: rgba(255, 255, 255, 0.94);
}

.revenue-section .section-header p,
.guarantee-section .section-header p,
.final-cta .section-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    font-weight: 500;
}

.revenue-amount {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    margin: 20px 0;
    letter-spacing: -0.05em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.revenue-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}
.revenue-stat {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255,255,255,0.16);
    padding: 40px 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    box-shadow: 0 16px 30px -18px rgba(0, 0, 0, 0.55);
}
.revenue-stat:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1)); /* Mais brilho no hover */
    transform: translateY(-6px); /* Mais elevação */
}
.revenue-stat h3 {
    font-size: 1.1rem; margin-bottom: 15px; color: rgba(255,255,255,0.92); font-weight: 600;
}
.revenue-stat .stat-value {
    font-size: 2.2rem; font-weight: 800; color: var(--text-light); line-height: 1.15;
}

.numbers-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; max-width: 1000px; margin: 0 auto;
}
.number-card {
    text-align: center;
    padding: 36px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98));
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: var(--transition-smooth);
}
.number-card:hover {
    transform: translateY(-10px); /* Mais elevação */
    box-shadow: var(--shadow-card-hover);
}
.number-value {
    font-size: 4.5rem; font-weight: 900; color: var(--color-primary);
    margin-bottom: 10px; letter-spacing: -0.05em;
}
.number-label { font-size: 1rem; color: var(--text-muted); font-weight: 600; }

/* ----------------------------------------------------
   Benefícios Grid
------------------------------------------------------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.benefit-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.16);
    transition: var(--transition-smooth);
}
.benefit-card:hover {
    transform: translateY(-10px); /* Mais elevação */
    box-shadow: var(--shadow-card-hover);
}
.benefit-card h3 {
    font-size: 1.24rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.benefit-card p {
    color: var(--text-muted); /* Usando text-muted */
    font-size: 0.98rem;
    font-weight: 400; /* Mais leve */
    line-height: 1.75;
}
.benefit-icon {
    width: 80px; height: 80px;
    background: rgba(30, 90, 168, 0.05);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}
.benefit-card:hover .benefit-icon {
    background: var(--color-primary);
    color: var(--text-light);
    transform: scale(1.15) rotate(8deg); /* Mais impacto na animação do ícone */
}

/* ----------------------------------------------------
   Botão Scroll Top Moderno
------------------------------------------------------- */
.scroll-to-top {
    background: var(--color-primary) !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: var(--shadow-glow) !important;
}

.faq .section-header p,
.market-section .section-header p,
.numbers-section .section-header p,
.presentation-section .section-header p,
.videos-section .section-header p,
.benefits-section .section-header p {
    color: var(--text-muted); /* Usando text-muted para consistência */
}

.faq .btn-main-cta {
    min-width: 240px;
    justify-content: center;
}

/* ----------------------------------------------------
   Responsividade Mobile & Tablet
------------------------------------------------------- */
@media (min-width: 769px) {
    .video-wrapper.shorts-wrapper { padding-top: 0; height: 550px; }
    .video-wrapper.shorts-wrapper iframe {
        width: 310px !important; height: 100% !important;
        position: relative !important; border-radius: var(--radius-md);
    }
}

@media (max-width: 1024px) {
    .main-hero h1 { font-size: 2.8rem; }
    .presentation-swiper .swiper-slide { width: 600px; }
    .revenue-amount { font-size: 4rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 0.95rem; color: var(--text-muted); } /* Ajuste para mobile */
    
    .main-hero { padding: 140px 20px 80px 20px; }
    .main-hero h1 { font-size: 2.2rem; }
    .main-hero .highlight, .main-hero .highlight-white { font-size: 2rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .btn-main-cta, .btn-secondary-cta { width: 100%; max-width: none; justify-content: center; }
    
    .presentation-swiper .swiper-slide { width: 100%; border-radius: var(--radius-sm); }
    .presentation-swiper .swiper-button-next, .presentation-swiper .swiper-button-prev { display: none !important; }
    .mobile-rotate-hint { display: flex; }
    
    .comparison-table { overflow-x: auto; border-radius: var(--radius-sm); }
    .comparison-table th, .comparison-table td { padding: 15px 10px; font-size: 0.9rem; }
    
    .revenue-amount { font-size: 3rem; }
    .revenue-stats { grid-template-columns: 1fr; gap: 20px; }
    
    .number-value { font-size: 3rem; }
    .number-card { padding: 28px 18px; }
    .benefit-card { padding: 30px 22px; }

    .section-nav { display: none; }
    .engagement-progress { display: none; }
    .progress-top { height: 3px; }
    .main-hero { background-attachment: scroll; }
}
