:root {
  /* Paleta Azul MChat.IA */
  --primary-color: #0066ff; /* Azul vibrante */
  --primary-hover: #0052cc;
  --bg-light: #f9fafb;
  --text-dark: #111827;
  --text-gray: #6b7280;
  --radius-lg: 24px;
  --radius-md: 16px;
}

body {
  font-family: "Figtree", sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

/* Elementos Customizados */
.btn-primary-custom {
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    var(--primary-hover) 100%
  );
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 255, 0.35);
}

.badge-pill {
  background-color: #eff6ff;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 60px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 102, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}


.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Cards */
.feature-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  background: #fff;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}
.icon-box {
  width: 50px;
  height: 50px;
  background-color: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Step Section */
.step-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}
.step-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* Pricing */
.pricing-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 40px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}
.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list i {
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 60px 0;
}
footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: #fff;
}

/* Utilitários de Texto */
.text-gradient {
  background: linear-gradient(90deg, #111 0%, var(--primary-color) 100%);
  
  /* 1. Define o padrão para navegadores modernos (remove o aviso laranja) */
  background-clip: text;
  
  /* 2. Garante que funcione no Chrome/Safari/Edge (o motor real) */
  -webkit-background-clip: text;
  
  /* 3. Define a cor transparente (Padrão + Webkit) */
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.text-highlight {
    color: var(--primary-color);
}

.vsl-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #000;
  border-radius: 12px; /* Bordas arredondadas */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
}

/* O container onde a API do YouTube vai injetar o vídeo */
#youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Bloqueia o mouse (ninguém pausa clicando) */
}

/* A camada invisível que captura o clique para desmutar */
.click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%; /* Deixa o rodapé livre se quiser */
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1); /* Leve escurecida antes de clicar */
  transition: background 0.3s;
}

/* O Botão de "Ativar Som" */
.unmute-btn {
  background: rgba(0, 102, 255, 0.9); /* Seu Azul */
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid #fff;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.6);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Barra Fake */
.fake-progress-bar {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.fake-progress-fill {
  height: 100%;
  background-color: #0066ff; /* Seu Azul */
  width: 20%; /* Começa fingindo que já rodou um pouco */
  transition: width 1s linear;
}

/* Animação do botão pulsando */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* --- CSS Específico desta sessão --- */
.text-ticker-section {
  padding: 40px 0;
  background-color: #fff; /* Fundo limpo */
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  overflow: hidden;
}

.ticker-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  /* Máscara para suavizar as bordas (fade out) */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 3rem; /* Espaço entre os nomes */
  width: max-content; /* Importante para texto: largura dinâmica */
  animation: scrollText 60s linear infinite; /* Velocidade ajustada */
}

.ticker-item {
  font-family: "Inter", sans-serif; /* Fonte mais geométrica fica melhor aqui */
  font-size: 1.25rem; /* Tamanho legível */
  font-weight: 600;
  color: #9ca3af; /* Cinza médio (não rouba a atenção) */
  white-space: nowrap; /* Garante que o nome não quebre linha */
  display: flex;
  align-items: center;
  gap: 3rem; /* Espaço para o ponto separador */
}

/* O pontinho separador */
.ticker-item::after {
  content: "•";
  color: #e5e7eb; /* Cinza bem claro */
  font-size: 1.5rem;
}

/* Hover suave (opcional) */
.ticker-item:hover {
  color: #0066ff; /* Seu Azul */
  cursor: default;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Move exatamente a metade (o conjunto original) */
}

/* Sessão Dark Mode com Degradê nas pontas */
.dark-step-section {
    /* O "truque" da mescla: Branco (0%) -> Azul Escuro (15%) -> Azul Escuro (85%) -> Branco (100%) */
    background: linear-gradient(to bottom, #ffffff 0%, #052766 15%, #142036 85%, #ffffff 100%);
    
    padding: 120px 0; /* Padding maior para o degradê respirar */
    color: #ffffff;
}

/* Ajuste de textos para o modo escuro */
.dark-step-section h2, 
.dark-step-section h3 {
    color: #fff !important;
}

.dark-step-section p {
    color: #cbd5e1 !important; /* Um cinza bem claro e legível */
}

/* Badge adaptado para fundo escuro */
.dark-step-section .badge-pill {
    background-color: rgba(0, 102, 255, 0.15); /* Azul translúcido */
    color: #60a5fa; /* Azul claro neon */
    border: 1px solid rgba(0, 102, 255, 0.3);
}

/* Imagem com borda sutil e sombra forte */
.dark-step-section .step-image {
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); /* Sombra dramática */
}

/* Cursor piscante estilo terminal */
.cursor {
    display: inline-block;
    font-weight: 100;
    font-size: 1em;
    color: #f4f805; /* Cor do cursor */
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Garante que o texto digitado tenha a cor de destaque */
#typewriter {
    color: var(--primary-color); /* Azul */
    text-decoration: underline;
    text-decoration-color: rgba(255, 238, 3, 0.2); /* Detalhe sutil */
}

/* =========================================
   BARRA DE NAVEGAÇÃO ESTILO TERMINAL (GLASS)
   ========================================= */

/* 1. O Wrapper que centraliza e flutua a barra */
.navbar-terminal-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

/* 2. A Barra em si (Onde acontece a mágica do vidro) */
.navbar-terminal {
    /* O Segredo: Fundo quase transparente (25% de opacidade apenas) */
    background: rgba(30, 35, 45, 0.25) !important; 
    
    /* Desfoque forte para criar o efeito de vidro fosco */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari */
    
    /* Borda fina e brilhante para delimitar o vidro */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Topo levemente mais claro (luz) */
    
    /* Sombra difusa para dar profundidade */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Estrutura */
    border-radius: 16px;
    padding: 6px 24px;
    width: 100%;
    max-width: 800px;
    transition: all 0.3s ease;
}

/* 3. Logo Gota D'água */
.brand-icon-box {
    background: rgba(0, 102, 255, 0.2); /* Azul transparente */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.3); /* Borda fina azul */
    transition: all 0.3s ease;
}

.brand-icon-box:hover {
    background: rgba(0, 102, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.6);
    transform: scale(1.05);
}

.navbar-terminal .navbar-brand {
    color: #fff !important;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 4. Links do Menu */
.navbar-terminal .nav-link {
    color: rgba(255, 255, 255, 0.8) !important; /* Branco levemente transparente */
    font-weight: 500;
    font-size: 15px;
    margin-left: 20px;
    transition: all 0.2s;
}

.navbar-terminal .nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5); /* Brilho ao passar o mouse */
}

/* 5. Botão de Contato (Destaque) */
.navbar-terminal .nav-item .btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}



.navbar-terminal .nav-item .btn:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px);
}

/* 6. Mobile */
@media (max-width: 991px) {
    .navbar-terminal .navbar-collapse {
        background: rgba(34, 40, 52, 0.95); /* Mais opaco no mobile para leitura */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .navbar-terminal .nav-link {
        margin-left: 0;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}











/* --- CSS da Sessão "O Que Você Aprende" --- */
    .skills-marquee-section {
        padding: 100px 0;
        background-color: #111827; /* Fundo base muito escuro */
        /* Gradiente sutil azulado no fundo para não ficar chapado */
        background-image: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f172a 100%);
        overflow: hidden;
        position: relative;
    }

    /* Títulos */
    .skills-title {
        color: #fff;
        font-weight: 800;
        margin-bottom: 1rem;
    }
    .skills-subtitle {
        color: #94a3b8;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 60px auto;
    }

    /* Container do Marquee */
    .marquee-wrapper {
        display: flex;
        width: 100%;
        overflow: hidden;
        margin-bottom: 24px; /* Espaço entre as linhas */
        /* Máscara para suavizar as pontas (fade out) */
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    /* A trilha que se move */
    .marquee-track {
        display: flex;
        gap: 24px; /* Espaço entre os itens */
        width: max-content;
    }

    /* Animações */
    .move-left {
        animation: scrollLeft 40s linear infinite;
    }
    .move-right {
        animation: scrollRight 40s linear infinite;
    }

    /* O Item (Pill) */
    .skill-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.03); /* Vidro bem escuro */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil */
        border-radius: 50px;
        color: #fff;
        font-weight: 500;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    /* O Efeito "Verse Marca Texto" (Neon) */
    .skill-pill i {
        color: #ccff00; /* Verde Limão Neon */
        font-size: 1.2rem;
        filter: drop-shadow(0 0 5px rgba(204, 255, 0, 0.4)); /* Brilho neon */
    }

    /* Hover no item (opcional, para dar vida) */
    .skill-pill:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #ccff00; /* Borda fica verde no hover */
        transform: scale(1.05);
        cursor: default;
    }

    @keyframes scrollLeft {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes scrollRight {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }
















    /* Container que segura o conteúdo e o bloqueio */
.blur-lock-container {
    position: relative; /* Importante para o overlay funcionar */
    overflow: hidden; /* Garante que nada vaze */
}

/* O conteúdo que será ofuscado */
.blurred-content {
    filter: blur(15px); /* Desfoque agressivo */
    opacity: 0.3; /* Baixa opacidade para fundir com o fundo dark */
    pointer-events: none; /* IMPEDE cliques e seleção de texto no fundo */
    user-select: none;
    transform: scale(0.98); /* Leve recuo para dar profundidade */
    transition: all 0.5s ease;
}

/* A camada de bloqueio (Overlay) */
.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Gradiente radial sutil para focar no centro */
    background: radial-gradient(circle, rgba(34,40,52,0.4) 0%, rgba(34,40,52,0) 80%);
}

/* O Card de Texto no Centro */
.lock-message {
    max-width: 600px;
    text-align: center;
    padding: 40px;
    /* Efeito de vidro sutil no card */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Animação de Pulsar no Botão */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}











/* --- Sessão de Comparação (Ancoragem) --- */
.comparison-section {
    background-color: #f9fafb; /* Fundo leve para destacar os cards */
    padding: 80px 0;
}

.news-print-wrapper {
    max-width: 800px;
    margin: 0 auto 60px auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}

.news-print-wrapper:hover {
    transform: scale(1.02);
}

/* Estilos dos Cards de Comparação */
.cost-card {
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

/* Card RUIM (Humano) */
.card-human {
    background-color: #fff;
    border: 2px solid #fee2e2; /* Vermelho bem claro */
    box-shadow: 0 10px 30px rgba(220, 38, 69, 0.05);
}

.card-human h3 {
    color: #991b1b; /* Vermelho escuro */
}

.card-human .cost-list li {
    border-bottom: 1px dashed #fecaca;
    color: #7f1d1d;
}

.alert-badge {
    background-color: #fef2f2;
    color: #dc2626;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid #fecaca;
}

/* Card BOM (MChat.IA - Azul e Dourado) */
.card-ai {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); /* Azul Dark */
    border: 2px solid transparent;
    /* Borda Dourada via Gradient */
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Efeito de Borda Dourada */
.card-ai::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px; 
    padding: 2px; 
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c); 
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-ai h3 {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.card-ai .cost-list li {
    border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
    color: #e2e8f0;
}

.card-ai .cost-value {
    color: #fbbf24; /* Dourado Amarelo */
    font-weight: 700;
}

.gold-badge {
    background: linear-gradient(45deg, #bf953f, #b38728);
    color: #fff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4);
}

/* Listas de Custo */
.cost-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.cost-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1rem;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* --- Sessão Premium (Consultoria) --- */
.premium-consulting-section {
    background-color: #0f172a; /* Azul bem escuro */
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.premium-title {
    font-family: 'Instrument Serif', serif; /* Fonte mais elegante se tiver, senão use a padrão */
    color: #fff;
}

.premium-highlight {
    color: #fbbf24; /* Dourado */
}















/* --- Sessão Timeline Premium --- */
.timeline-section {
    background-color: #0f172a; /* Fundo Dark Base */
    position: relative;
    padding-bottom: 100px;
}

/* Título de Seção */
.section-header-premium {
    text-align: center;
    margin-bottom: 80px;
}

/* Colunas da Timeline */
.timeline-col {
    position: relative;
    padding: 0 20px;
}

/* Linha Vertical Central (Conector) */
.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px;
}

/* Linha Padrão (Esquerda) */
.line-standard {
    background: rgba(255, 255, 255, 0.1);
}

/* Linha Premium (Direita) - Efeito Neon Dourado */
.line-premium {
    background: linear-gradient(to bottom, #bf953f, #fcf6ba, #b38728);
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.3);
}

/* Cards dos Meses */
.timeline-card {
    position: relative;
    margin-left: 40px; /* Espaço para a linha */
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.5); /* Vidro escuro */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

/* Estilo Específico para o Lado SEM Consultoria */

/* Ajuste para o Lado SEM Consultoria */
.card-standard h4 { 
    color: #fff !important; /* Título Branco Puro */
    font-size: 1.25rem;
}

.card-standard p {
    color: #cbd5e1 !important; /* Cinza muito claro (quase branco) */
}

.card-standard .border-top {
    border-color: rgba(255,255,255,0.1) !important; /* Linha divisória mais visível */
}

.card-standard small {
    color: #94a3b8 !important; /* Texto do rodapé do card um pouco mais claro */
}

/* Estilo Específico para o Lado COM Consultoria (VIP) */
.card-premium {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

/* Brilho Dourado no topo do card premium */
.card-premium::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, #fcf6ba, transparent);
}

.card-premium h4 {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Marcador de Mês (Bolinha na linha) */
.month-marker {
    position: absolute;
    left: -49px; /* Alinha com a linha vertical */
    top: 30px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 4px solid #0f172a; /* Cor do fundo da página para "cortar" a linha */
    z-index: 2;
}

.marker-standard { background-color: #64748b; }
.marker-premium { 
    background: radial-gradient(circle, #fcf6ba 0%, #b38728 100%);
    box-shadow: 0 0 10px #b38728;
}

/* Badges de Resultado (Destaques) */
.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-speed {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399; /* Verde Neon */
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-money {
    background: rgba(255, 215, 0, 0.1);
    color: #fbbf24; /* Dourado */
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* --- Sessão de Bônus (Caixa de Presente) --- */
.bonus-box-wrapper {
    margin-top: 60px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 3px; /* Espaço para a borda gradiente */
    background-image: linear-gradient(45deg, #bf953f, #b38728);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 40px rgba(179, 135, 40, 0.15);
}

.bonus-box-inner {
    background: #0f172a;
    border-radius: 22px; /* Um pouco menos que o wrapper */
    padding: 50px;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Ajuste para os Cards de Bônus */
.bonus-item h5 {
    color: #fff !important; /* Título Branco */
    font-weight: 700;
}

.bonus-item p {
    color: #cbd5e1 !important; /* Descrição Cinza Claro */
    font-weight: 400;
}

/* Ajuste para o texto "Além dos prompts..." logo acima dos cards */
.bonus-box-inner > p.text-muted {
    color: #cbd5e1 !important; /* Clareando o subtítulo */
}