/* ==========================================================================
   CSS PRINCIPAL - MENTORIA MISSÃO FECHAMENTO (LEO BOLSON)
   Estilo Premium Dark-Mode / Bronze / Glassmorphic
   ========================================================================== */

/* VARIÁVEIS DE DESIGN SYSTEM (Tons inspirados na referência) */
:root {
    --color-bg-primary: #050505;      /* Preto puro profundo */
    --color-bg-secondary: #0c0c0c;    /* Preto secundário */
    --color-card-bg: rgba(18, 18, 18, 0.7); /* Fundo dos cards glassmorphic neutro */
    --color-card-border: rgba(212, 175, 55, 0.15); /* Bordas douradas translúcidas */
    
    --color-text-primary: #ffffff;    /* Branco puro */
    --color-text-secondary: #a3a3a3;  /* Cinza neutro secundário */
    
    /* Gradientes e Acentos Dourados */
    --color-accent-solid: #d4af37;    /* Dourado clássico */
    --color-accent-light: #f3e5ab;    /* Dourado claro suave */
    --gradient-accent: linear-gradient(135deg, #c5a059 0%, #f3e5ab 50%, #b88e3c 100%); /* Gradiente dourado metálico rico */
    --gradient-accent-hover: linear-gradient(135deg, #d4af37 0%, #ffffff 100%);
    --gradient-dark-glow: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(5, 5, 5, 0) 70%);
    
    /* Fontes */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Efeitos de Sombra e Desfoque */
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.25);
    --blur-glass: blur(16px);
}

/* RESET E CONFIGURAÇÕES BÁSICAS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}

/* LAYOUT CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TEXTOS E PARÁGRAFOS */
h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    color: var(--color-accent-light);
    font-weight: 600;
}

/* GRADIENTE TEXTO */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* GLOWS DE FUNDO RADIAIS */
.radial-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    -webkit-filter: blur(150px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.glow-1 {
    top: 5%;
    right: -100px;
    background: var(--color-accent-solid);
}

.glow-2 {
    top: 35%;
    left: -200px;
    background: #b88e3c;
    opacity: 0.18;
}

.glow-3 {
    bottom: 10%;
    right: -100px;
    background: var(--color-accent-light);
    opacity: 0.2;
}

/* BOTÕES PREMIUM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(224, 107, 38, 0.25);
}

.btn-primary:hover {
    background: var(--gradient-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(224, 107, 38, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(224, 107, 38, 0.4);
}

.btn-outline:hover {
    background: rgba(224, 107, 38, 0.08);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
}

/* ANIMAÇÃO DE PULSAÇÃO DO BOTÃO DE CHECKOUT */
.btn-pulse {
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2.5s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 107, 38, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(224, 107, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(224, 107, 38, 0);
    }
}

/* CARDS GLASSMORPHIC */
.glass-card {
    background: var(--color-card-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

/* HEADER / NAVBAR */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 8, 7, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.logo-bold {
    color: var(--color-text-primary);
}

.logo-light {
    color: var(--color-accent-light);
    font-weight: 300;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-accent-light);
}

/* HERO SECTION */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent-light);
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(224, 107, 38, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(224, 107, 38, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.featured-in {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.featured-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 12px;
}

.featured-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

.logo-item i {
    color: var(--color-accent-light);
    font-size: 1.1rem;
}

/* HERO PORTRAIT & STATS OVERLAYS */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.mentor-image-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(5, 5, 5, 0) 70%);
}

.mentor-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* EFEITO GLOW ATRÁS DA IMAGEM */
.mentor-image-container::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 65%);
    z-index: -1;
    pointer-events: none;
}

/* CARDS FLUTUANTES SOBRE A IMAGEM */
.overlay-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    white-space: nowrap;
    border-radius: 12px;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card-icon-glow {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.card-icon-glow.bronze {
    color: #f3e5ab;
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.overlay-card-title {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.overlay-card-value {
    display: block;
    font-weight: 700;
    color: var(--color-text-primary);
}

.overlay-card-value.highlight-orange {
    color: var(--color-accent-light);
    font-size: 1.15rem;
    font-family: var(--font-headings);
    letter-spacing: -0.01em;
}

/* Posições dos cards na foto */
.overlay-top-right {
    top: 15%;
    right: -30px;
}

.overlay-mid-left {
    top: 50%;
    left: -40px;
}

.overlay-bottom-right {
    bottom: 8%;
    right: -20px;
}

/* BARRA DE ESTATÍSTICAS / HIGHLIGHTS */
.stats-bar {
    background: #0c0c0c;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 36px 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--color-accent-light);
    opacity: 0.9;
}

.stat-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

/* SEÇÃO PILARES DA MENTORIA */
.pillars {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.text-center {
    text-align: center;
}

.section-tag {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent-light);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pillar-card {
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.08);
}

.pillar-card.active {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.85) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.pillar-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.12);
    line-height: 1;
}

.pillar-card.active .pillar-number {
    color: rgba(212, 175, 55, 0.25);
}

.pillar-icon {
    font-size: 2.2rem;
    color: var(--color-accent-light);
    margin-bottom: 24px;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pillar-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* SEÇÃO AUTORIDADE E RESULTADOS */
.authority {
    padding: 100px 0;
    background: #050505;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.authority-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.authority-text {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

/* CAIXA DE ESTATÍSTICA DE VGV GIGANTE */
.gv-stat-box {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.gv-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 16px;
}

.gv-value-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.gv-currency {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-light);
}

.gv-number {
    font-family: var(--font-headings);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-primary);
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff 30%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gv-suffix {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent-light);
}

.gv-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
}

/* GRÁFICO DE EVOLUÇÃO VISUAL SIMULADO (Aparência premium de dados) */
.authority-visual {
    display: flex;
    justify-content: center;
}

.results-chart-card {
    width: 100%;
    max-width: 480px;
    padding: 32px;
    background: rgba(15, 12, 10, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.results-chart-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.chart-title {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--color-text-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.chart-simulated {
    height: 200px;
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

.chart-line-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.chart-container-svg {
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animações e Efeitos SVG */
.chart-stroke-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
}

.chart-stroke-glow {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Quando entra em foco na viewport */
.revealed .chart-stroke-path {
    animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.revealed .chart-stroke-glow {
    animation: drawLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#chart-glow-area {
    opacity: 0;
    transition: opacity 1.2s ease 0.8s;
}

.revealed #chart-glow-area {
    opacity: 1;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Pontos do Gráfico */
.chart-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d4af37;
    box-shadow: 0 0 6px #d4af37;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, 50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

/* Aparecimento staggered dos pontos */
.revealed .chart-dot {
    transform: translate(-50%, 50%) scale(1);
}

.revealed .dot-1 { transition-delay: 0.2s; }
.revealed .dot-2 { transition-delay: 0.5s; }
.revealed .dot-3 { transition-delay: 0.8s; }
.revealed .dot-4 { transition-delay: 1.1s; }

/* Halo de pulso em volta de cada ponto */
.chart-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.revealed .chart-dot::before {
    opacity: 1;
}

/* Stagger delay para os pulsos */
.revealed .dot-1::before { animation-delay: 0.2s; }
.revealed .dot-2::before { animation-delay: 0.5s; }
.revealed .dot-3::before { animation-delay: 0.8s; }
.revealed .dot-4::before { animation-delay: 1.1s; }

@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }
    80%, 100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Efeito Hover nos pontos */
.chart-dot:hover {
    transform: translate(-50%, 50%) scale(1.4);
    background: #fff;
    border-color: #f3e5ab;
    box-shadow: 0 0 15px #d4af37, 0 0 0 4px rgba(212, 175, 55, 0.2);
    z-index: 12;
}

/* Tooltip Premium (Glassmorphism) */
.chart-dot::after {
    content: attr(data-label);
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(12, 10, 8, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 10px rgba(212, 175, 55, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chart-dot:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.chart-stats-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.chart-stat {
    display: flex;
    flex-direction: column;
}

.c-label {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.c-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.c-value.highlight {
    color: var(--color-accent-light);
}

/* SEÇÃO PREÇOS / OFERTA */
.pricing {
    padding: 100px 0;
    position: relative;
}

.pricing-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 56px 48px;
    position: relative;
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85) 0%, rgba(50, 45, 30, 0.2) 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(212, 175, 55, 0.05);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    padding: 6px 20px;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    text-align: center;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.price-box {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.price-old {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    display: block;
    margin-bottom: 6px;
    opacity: 0.7;
}

.price-new-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.price-new-container .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-top: 6px;
}

.price-value {
    font-family: var(--font-headings);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.price-installments {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: block;
}

/* LISTA DE BENEFÍCIOS DO PREÇO */
.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.p-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.p-feature-item i {
    color: var(--color-accent-light);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* ÁREA DE AÇÃO DE PREÇOS (BOTÃO + QR CODE) */
.pricing-actions-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 36px;
    max-width: 580px;
    margin: 0 auto;
}

.pricing-actions-centered .btn {
    width: 100%;
}

.pricing-security {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-security i {
    color: #52c41a;
}

/* CHAMADA DE DECISÃO FINAL (Closing) */
.closing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, #0c0c0c 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.closing-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--color-accent-light);
}

.closing-question {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}

.closing-question span {
    color: #fff;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FOOTER */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0 40px 0;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 30px;
}

.footer-pills {
    display: flex;
    gap: 12px;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.footer-pills span {
    letter-spacing: 0.05em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tagline {
    font-family: var(--font-headings);
    font-style: italic;
    color: var(--color-accent-light);
    font-size: 0.95rem;
}

.copyright {
    font-size: 0.75rem;
}

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA AO SCROLL
   ========================================================================== */
.animate-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para animação sequencial */
.hero-content .animate-reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-content .animate-reveal:nth-child(2) { transition-delay: 0.2s; }
.hero-content .animate-reveal:nth-child(3) { transition-delay: 0.3s; }
.hero-content .animate-reveal:nth-child(4) { transition-delay: 0.4s; }
.hero-content .animate-reveal:nth-child(5) { transition-delay: 0.5s; }

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

/* TABLETS (992px) */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .featured-logos {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authority-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gv-stat-box {
        text-align: center;
    }
    
    .gv-value-container {
        justify-content: center;
    }
    
    .pricing-card {
        padding: 48px 24px;
    }
    
    .pricing-actions {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .pricing-action-right {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 24px;
    }
}

/* SMARTPHONES (768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        height: 70px;
    }
    
    .nav {
        display: none; /* Esconde menu para simplificar ou para hambúrguer */
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .overlay-card {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .overlay-top-right {
        right: 0px;
    }
    
    .overlay-mid-left {
        left: 0px;
    }
    
    .overlay-bottom-right {
        right: 0px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .gv-number {
        font-size: 4rem;
    }
    
    .gv-currency {
        font-size: 1.5rem;
    }
    
    .gv-suffix {
        font-size: 1.6rem;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
    
    .closing-question {
        font-size: 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* Fallback de exibição instantânea caso o JS não seja executado */
.no-js .animate-reveal {
    opacity: 1 !important;
    transform: none !important;
}

