/* ===== BOTÃO DE RESET NATURAL - LP MOBILE-FIRST ===== */
/* Tamanho target: ~12-15KB minificado */

/* ==================== 1. RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #faf9f7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==================== 2. VARIÁVEIS CSS ==================== */
:root {
  --verde-oliva: #4a5d23;
  --verde-hover: #3a4a1c;
  --bege-dourado: #d4c5a9;
  --branco-off: #faf9f7;
  --verde-claro: #f0f2e8;
  --verde-medio: #e8ebe0;
  --vermelho-urgencia: #c53030;
  --texto-principal: #2d3748;
  --texto-secundario: #4a5568;
  --sombra-cta: rgba(74, 93, 35, 0.3);
  --sombra-cta-hover: rgba(74, 93, 35, 0.4);
}

/* ==================== 3. UTILITY CLASSES ==================== */
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.hidden { display: none !important; }

.section-padding {
  padding: 3rem 0;
}

.section-padding-lg {
  padding: 4rem 0;
}

/* ==================== 4. TIPOGRAFIA ==================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--verde-oliva);
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--texto-secundario);
}

.headline-destaque {
  font-size: 1.875rem;
  line-height: 1.15;
  color: var(--verde-oliva);
}

.subheadline {
  font-size: 1.125rem;
  color: var(--texto-secundario);
  font-weight: 400;
}

.texto-destaque {
  color: var(--verde-oliva);
  font-weight: 700;
}

/* ==================== 5. SEÇÕES - BACKGROUNDS ALTERNADOS ==================== */
.bg-branco { background: var(--branco-off); }
.bg-verde-claro { background: var(--verde-claro); }
.bg-verde-medio { background: var(--verde-medio); }

/* ==================== 6. HERO SECTION ==================== */
.hero-section {
  background: var(--branco-off);
  padding: 1.5rem 0 2rem;
}

.hero-section .container {
  max-width: 800px;
}

/* VTURB Player - o player gerencia seu próprio tamanho */
vturb-smartplayer {
  margin-bottom: 1.5rem;
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
}

.vsl-placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--verde-oliva);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.vsl-placeholder-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.vsl-placeholder-text {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ==================== 7. CTA BUTTON ==================== */
.cta-button {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem;
  background: #00AC1A;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px -3px rgba(0, 172, 26, 0.4);
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.cta-button:hover,
.cta-button:focus {
  transform: scale(1.08);
  box-shadow: 0 20px 35px -5px rgba(0, 172, 26, 0.5), 0 0 40px rgba(0, 172, 26, 0.4);
  background: #009916;
  animation: none;
}

.cta-button:active {
  transform: scale(0.98);
  animation: none;
}

.cta-primary {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px -3px rgba(0, 172, 26, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 35px -3px rgba(0, 172, 26, 0.5), 0 0 35px rgba(0, 172, 26, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px -3px rgba(0, 172, 26, 0.4);
  }
}

/* ==================== 8. BADGES/SELOS ==================== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--texto-secundario);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==================== 9. PROBLEMA SECTION ==================== */
.problema-section {
  padding: 3rem 0;
}

.problema-lista {
  list-style: none;
  margin: 1.5rem 0;
}

.problema-lista li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(74, 93, 35, 0.1);
}

.problema-lista li::before {
  content: '❌';
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.pergunta-destaque {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verde-oliva);
  margin: 2rem 0 1rem;
  padding: 1.25rem;
  background: var(--verde-claro);
  border-radius: 12px;
  border-left: 4px solid var(--verde-oliva);
}

/* Cards de Dor - Bloco Problema */
.dor-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.dor-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--vermelho-urgencia);
}

.dor-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 0;
  border: none;
}

.dor-card-text {
  font-size: 0.95rem;
  color: var(--texto-principal);
  line-height: 1.5;
  margin: 0;
  padding: 1.25rem;
}

.dor-card-text strong {
  color: var(--vermelho-urgencia);
}

/* Frustração Lista */
.frustracao-lista {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0;
  list-style: none;
}

.frustracao-lista li {
  background: rgba(197, 48, 48, 0.08);
  padding: 0.9rem 1rem;
  padding-left: 2.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--texto-principal);
  position: relative;
  line-height: 1.4;
}

.frustracao-lista li::before {
  content: '❌';
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  font-size: 0.9rem;
}

/* Valor Gasto Destaque */
.valor-gasto {
  background: var(--vermelho-urgencia);
  color: #fff;
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  margin: 1.5rem 0;
}

.valor-gasto-numero {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.valor-gasto-texto {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Destaque Vermelho - Frase importante */
.destaque-vermelho {
  background: var(--vermelho-urgencia);
  color: #fff;
  padding: 1.5rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
}

.destaque-vermelho p {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}

.destaque-vermelho strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* ==================== 10. IMAGEM PLACEHOLDER ==================== */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--verde-claro) 0%, var(--verde-medio) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-oliva);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
  margin: 1.5rem 0;
  border: 2px dashed var(--bege-dourado);
}

.img-placeholder-small {
  aspect-ratio: 1 / 1;
  max-width: 200px;
  margin: 1rem auto;
}

.img-placeholder-wide {
  aspect-ratio: 16 / 9;
}

/* ==================== 11. DEPOIMENTO/HISTÓRIA ==================== */
.historia-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 1.5rem 0;
}

.historia-intro {
  font-size: 1.05rem;
  color: var(--texto-principal);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Tags de Dor da Tatiane */
.historia-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.historia-tag {
  background: rgba(197, 48, 48, 0.1);
  color: var(--vermelho-urgencia);
  padding: 0.5rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.historia-tag::before {
  content: '→';
}

.historia-quote {
  font-style: italic;
  color: var(--texto-secundario);
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--verde-oliva);
  margin: 1.25rem 0;
  line-height: 1.7;
}

.historia-destaque {
  background: var(--verde-claro);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--verde-oliva);
  text-align: center;
}

.historia-autor {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--verde-oliva);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.historia-autor::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--verde-oliva);
}

/* Resultados em Números */
.resultado-numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.resultado-item {
  background: linear-gradient(135deg, var(--verde-oliva) 0%, var(--verde-hover) 100%);
  padding: 1.25rem 0.5rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.3);
}

.resultado-numero {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.resultado-label {
  font-size: 0.7rem;
  display: block;
  margin-top: 0.35rem;
  opacity: 0.9;
}

/* Frase Final Emocional */
.historia-frase-final {
  background: var(--verde-claro);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--verde-oliva);
  border: 2px solid var(--verde-oliva);
}

/* ==================== 12. MECANISMO SECTION ==================== */
.mecanismo-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Número em Destaque Grande */
.numero-destaque {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--vermelho-urgencia);
}

.numero-destaque-valor {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vermelho-urgencia);
  line-height: 1;
  display: block;
}

.numero-destaque-texto {
  font-size: 0.95rem;
  color: var(--texto-secundario);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.numero-destaque-fonte {
  font-size: 0.75rem;
  color: var(--texto-secundario);
  opacity: 0.7;
  margin-top: 0.75rem;
  display: block;
}

/* Badge de Credibilidade */
.badge-credibilidade {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--verde-oliva);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.badge-credibilidade-icon {
  font-size: 1rem;
}

/* GLP-1 Destaque */
.glp1-box {
  background: linear-gradient(135deg, #fff 0%, var(--verde-claro) 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 2px solid var(--verde-oliva);
  text-align: center;
}

.glp1-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--verde-oliva);
  margin-bottom: 0.5rem;
}

.glp1-subtitulo {
  font-size: 0.9rem;
  color: var(--texto-secundario);
}

/* Fluxo Visual (Mini Infográfico) */
.fluxo-visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.fluxo-item {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fluxo-numero {
  width: 32px;
  height: 32px;
  background: var(--verde-oliva);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.fluxo-texto {
  font-size: 0.9rem;
  color: var(--texto-principal);
  line-height: 1.4;
}

.fluxo-seta {
  text-align: center;
  color: var(--verde-oliva);
  font-size: 1.25rem;
}

.mecanismo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.mecanismo-col {
  padding: 1.25rem;
  border-radius: 12px;
}

.mecanismo-col.ligado {
  background: rgba(74, 93, 35, 0.1);
  border: 2px solid var(--verde-oliva);
}

.mecanismo-col.desligado {
  background: rgba(197, 48, 48, 0.05);
  border: 2px solid var(--vermelho-urgencia);
}

.mecanismo-col h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.mecanismo-col.desligado h4 {
  color: var(--vermelho-urgencia);
}

.lista-check, .lista-x {
  list-style: none;
}

.lista-check li, .lista-x li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.9rem;
}

.lista-check li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.lista-x li::before {
  content: '❌';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

/* ==================== 13. SOLUÇÃO/PILARES ==================== */
.pilares-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.pilar-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--verde-oliva);
}

.pilar-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--verde-oliva);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pilar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pilar-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Objeções Superadas */
.objecoes-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.objecao-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(74, 93, 35, 0.1);
}

.objecao-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.objecao-item:first-child {
  padding-top: 0;
}

.objecao-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--verde-oliva);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.objecao-check svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
}

.objecao-texto {
  font-size: 0.95rem;
  color: var(--texto-secundario);
  line-height: 1.5;
}

.objecao-destaque {
  background: var(--verde-claro);
  padding: 1.25rem;
  border-radius: 12px;
  margin-top: 1rem;
  text-align: center;
}

.objecao-destaque p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--verde-oliva);
  margin: 0;
}

/* Credenciais Badges */
.credenciais-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.credencial-badge-item {
  background: #fff;
  border: 2px solid var(--verde-oliva);
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--verde-oliva);
  text-align: center;
}

/* Frase de Transição */
.transicao-box {
  background: var(--verde-oliva);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.transicao-box p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* ==================== 14. PROVA SOCIAL ==================== */
.depoimento-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.depoimento-header {
  margin-bottom: 1rem;
}

.depoimento-header h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--verde-oliva);
}

.depoimento-badge {
  display: inline-block;
  background: var(--verde-claro);
  color: var(--texto-secundario);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.depoimento-texto {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--texto-secundario);
}

/* ==================== 15. TABELA COMPARATIVA ==================== */
.tabela-comparativa {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.tabela-comparativa th,
.tabela-comparativa td {
  padding: 0.875rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(74, 93, 35, 0.1);
}

.tabela-comparativa th {
  background: var(--verde-oliva);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
}

.tabela-comparativa th:first-child {
  border-radius: 12px 0 0 0;
}

.tabela-comparativa th:last-child {
  border-radius: 0 12px 0 0;
}

.tabela-comparativa tr:nth-child(even) {
  background: var(--verde-claro);
}

.tabela-comparativa td:first-child {
  color: var(--vermelho-urgencia);
}

.tabela-comparativa td:last-child {
  color: var(--verde-oliva);
  font-weight: 500;
}

/* ==================== 16. DIFERENCIAIS ==================== */
.diferencial-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.diferencial-numero {
  width: 36px;
  height: 36px;
  background: var(--verde-oliva);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.diferencial-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.diferencial-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ==================== 17. ENTREGÁVEIS ==================== */
.entregavel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.entregavel-check {
  width: 28px;
  height: 28px;
  background: var(--verde-oliva);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.entregavel-content h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.entregavel-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--texto-secundario);
}

/* ==================== 18. TIMELINE 21 DIAS ==================== */
.timeline-container {
  position: relative;
  padding-left: 2rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--verde-oliva) 0%, var(--bege-dourado) 100%);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--verde-oliva);
  border-radius: 50%;
  border: 3px solid var(--branco-off);
}

.timeline-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.timeline-img {
  margin: -1.25rem -1.25rem 1.25rem -1.25rem;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  border: none;
}

.timeline-badge {
  display: inline-block;
  background: var(--verde-oliva);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.timeline-lista {
  list-style: none;
}

.timeline-lista li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--texto-secundario);
}

.timeline-lista li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--verde-oliva);
  font-weight: 700;
}

/* ==================== 19. QUALIFICAÇÃO ==================== */
.qualificacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.qualificacao-box {
  padding: 1.5rem;
  border-radius: 12px;
}

.qualificacao-box.para-voce {
  background: rgba(74, 93, 35, 0.1);
  border: 2px solid var(--verde-oliva);
}

.qualificacao-box.nao-para-voce {
  background: rgba(197, 48, 48, 0.05);
  border: 2px solid var(--vermelho-urgencia);
}

.qualificacao-box h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.qualificacao-box.nao-para-voce h4 {
  color: var(--vermelho-urgencia);
}

/* ==================== 20. BÔNUS ==================== */
.bonus-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--bege-dourado);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde-oliva), var(--bege-dourado));
}

.bonus-badge {
  display: inline-block;
  background: var(--bege-dourado);
  color: var(--verde-hover);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bonus-valor {
  font-size: 0.875rem;
  color: var(--texto-secundario);
  margin-bottom: 0.5rem;
}

.bonus-valor span {
  text-decoration: line-through;
  color: var(--vermelho-urgencia);
}

.bonus-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* ==================== 21. OFERTA/PREÇO ==================== */
.oferta-section {
  background: var(--verde-oliva);
  color: #fff;
  padding: 3rem 0;
}

.oferta-stack {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.oferta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  line-height: 1.4;
}

.oferta-item:last-child {
  border-bottom: none;
}

.oferta-item-texto {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1;
}

.oferta-item-texto span:last-child {
  color: #fff;
  font-weight: 500;
}

.oferta-item-check {
  flex-shrink: 0;
  font-size: 0.9rem;
}

.oferta-item-valor {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Total com destaque */
.oferta-total {
  text-align: center;
  margin: 2rem 0 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.oferta-total-label {
  font-size: 1.25rem;
  color: var(--verde-oliva);
  margin: 0;
  font-weight: 600;
}

.valor-riscado {
  text-decoration: line-through;
  color: var(--vermelho-urgencia);
  font-weight: 700;
  font-size: 1.35rem;
}

/* Caixa de preço */
.oferta-preco-box {
  background: #fff;
  color: var(--verde-oliva);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  margin: 1.5rem 0 2rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.oferta-parcelas {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--texto-secundario);
  font-weight: 500;
}

.oferta-preco-grande {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--verde-oliva);
}

.oferta-preco-grande sup {
  font-size: 1.75rem;
  vertical-align: super;
  font-weight: 600;
}

.oferta-avista {
  font-size: 1.05rem;
  color: var(--texto-secundario);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 93, 35, 0.15);
}

.oferta-avista strong {
  color: var(--verde-oliva);
  font-size: 1.2rem;
}

.oferta-section .cta-button {
  background: #00AC1A;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 172, 26, 0.4);
}

.oferta-section .cta-button:hover {
  background: #009916;
}

/* ==================== 22. AUTORIDADE ==================== */
.autoridade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.autoridade-foto {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--verde-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 4px solid var(--verde-oliva);
}

.autoridade-credenciais {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.credencial-badge {
  background: var(--verde-claro);
  color: var(--verde-oliva);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==================== 23. GARANTIA ==================== */
.garantia-box {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--verde-oliva);
}

.garantia-selo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--verde-oliva);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.garantia-selo-numero {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.garantia-selo-texto {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== 24. FAQ ACCORDION (CSS PURO) ==================== */
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--texto-principal);
  font-size: 0.95rem;
  transition: background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  background: var(--verde-claro);
}

.faq-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  color: var(--verde-oliva);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 1.25rem 1.25rem;
  color: var(--texto-secundario);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-toggle:checked + .faq-question + .faq-answer {
  max-height: 500px;
}

.faq-toggle:checked + .faq-question .faq-arrow {
  transform: rotate(180deg);
}

.faq-toggle:checked + .faq-question {
  background: var(--verde-claro);
}

/* ==================== 25. RODAPÉ ==================== */
.footer {
  background: var(--verde-hover);
  color: #fff;
  padding: 2rem 0;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-aviso {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.footer-copyright {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== 26. RESPONSIVO (DESKTOP) ==================== */
@media (min-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }

  .headline-destaque { font-size: 2.5rem; }

  .container { max-width: 720px; }

  .cta-micro {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .mecanismo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resultado-numeros {
    gap: 1rem;
  }

  .resultado-numero {
    font-size: 2rem;
  }

  .qualificacao-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .autoridade-card {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .container { max-width: 900px; }

  .pilares-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================== 27. ACESSIBILIDADE ==================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus visible para navegação por teclado */
:focus-visible {
  outline: 3px solid var(--verde-oliva);
  outline-offset: 2px;
}

/* ==================== 28. UTILITÁRIOS EXTRAS ==================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.fw-bold { font-weight: 700 !important; }
.fw-normal { font-weight: 400 !important; }

.fs-small { font-size: 0.875rem !important; }
.fs-large { font-size: 1.125rem !important; }
