/* ============================================
   ALTIVA ASSESSORIA — Design System v2
   Landing Page Premium · Conversão de Leads
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

/* --- CSS Variables --- */
:root {
  --black: #0D0D0D;
  --white: #FAFAFA;
  --white-pure: #FFFFFF;
  --gray-deep: #1A1A1A;
  --gray-surface: #111111;
  --gray-medium: #666666;
  --gray-text: #999999;
  --gray-border: rgba(255,255,255,0.06);
  --ice-blue: #E0E7FF;
  --accent: #C7D2FE;
  --accent-border: rgba(199, 210, 254, 0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tracking-tight: -0.03em;
  --tracking-normal: -0.02em;
  --container: 1200px;
  --text-max: 680px;
  --headline-max: 900px;
  --radius-card: 18px;
  --radius-btn: 13px;
  --radius-input: 11px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.7s;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--white); background: var(--black); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 80px; } }

/* ============================================
   HEADER FIXO COM BLUR
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 50px;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .header-logo { height: 60px; }
}

.header-cta {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-header.scrolled .header-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Tipografia --- */
.headline-hero {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  max-width: var(--headline-max);
}

.headline-section {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: var(--tracking-normal);
  line-height: 1.15;
  max-width: var(--headline-max);
}

.subheadline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: var(--text-max);
}

.body-text {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  max-width: var(--text-max);
  color: #CCCCCC;
}

.body-text p + p { margin-top: 16px; }

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-medium);
}

.transition-phrase {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: rgba(255,255,255,0.65);
  max-width: var(--text-max);
  margin: 0 auto;
  padding-top: 64px;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Seções --- */
.section { position: relative; overflow: hidden; }
.section-dark { background: var(--black); color: var(--white-pure); }
.section-light { background: var(--white); color: var(--gray-deep); position: relative; }

.section-light::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--black), var(--white));
  pointer-events: none;
  z-index: 2;
}

.section-inner { padding: 100px 0; }
@media (min-width: 768px) { .section-inner { padding: 120px 0; } }

/* --- Light Streak --- */
.light-streak {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.08) 80%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.light-streak::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0% { transform: translateX(0); } 100% { transform: translateX(200%); } }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* Stagger */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.40s; }

/* --- Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,231,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }

/* ============================================
   SEÇÃO 01 — HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 0 60px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 50%, rgba(224,231,255,0.12) 0%, rgba(224,231,255,0.04) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero .label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; gap: 20px; } }

.hero-microcopy {
  font-size: 13px;
  color: var(--gray-medium);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint svg { width: 24px; height: 24px; stroke: var(--white-pure); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Word reveal */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.word-reveal .word.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   SEÇÃO 02 — DOR
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.pain-card {
  background: var(--gray-deep);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(199,210,254,0);
  transition: box-shadow 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
}
.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  padding: 1px;
  background: linear-gradient(135deg, rgba(199,210,254,0.3), transparent 40%, transparent 60%, rgba(199,210,254,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pain-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(199,210,254,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pain-card:hover {
  box-shadow: 0 8px 40px -10px rgba(199,210,254,0.15);
  border-color: rgba(199,210,254,0.2);
  transform: translateY(-5px);
}
.pain-card:hover::before { opacity: 1; }
.pain-card:hover::after { opacity: 1; }

.pain-card-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(199,210,254,0.12) 0%, rgba(255,255,255,0.04) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.pain-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--white-pure); position: relative; z-index: 1; }
.pain-card-text { font-size: 14px; line-height: 1.65; color: #BBBBBB; position: relative; z-index: 1; }

/* ============================================
   SEÇÃO 03 — DIFERENCIAÇÃO (Centralizada)
   ============================================ */
.diff-section .headline-section { color: var(--gray-deep); text-align: center; margin: 0 auto; }
.diff-section .body-text { color: #444444; text-align: center; margin-left: auto; margin-right: auto; }
.diff-section .subheadline { color: var(--gray-medium); }

.comparison-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 48px auto;
  max-width: 900px;
}
@media (min-width: 768px) { .comparison-table { grid-template-columns: 1fr 1fr; gap: 24px; } }

.comparison-col { border-radius: var(--radius-card); padding: 36px 28px; }
.comparison-col--agency { background: #F0F0F0; border: 1px solid rgba(0,0,0,0.06); }
.comparison-col--altiva {
  background: var(--black);
  color: var(--white-pure);
  border: 1px solid rgba(199,210,254,0.12);
  box-shadow: 0 0 40px -10px rgba(199,210,254,0.1);
}

.comparison-col h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  position: relative;
}
.comparison-col--altiva h3 { color: var(--accent); border-bottom-color: rgba(255,255,255,0.08); }
.comparison-col--agency h3 { color: var(--gray-text); }

.comparison-col h3 .inline-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  height: 100px;
  max-width: none;
  transform: translate(-50%, -50%) scale(4.5);
  filter: invert(1) brightness(2);
  pointer-events: none;
}

.comparison-col ul li {
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.comparison-col--agency ul li { color: var(--gray-text); }
.comparison-col--altiva ul li { color: #E0E0E0; }

.comparison-col ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  transform: scale(0.5);
  opacity: 0.3;
}
.comparison-col--agency ul li::before { background: #CCCCCC; }
.comparison-col--altiva ul li::before { background: var(--accent); }

/* Scroll-activated bullet animation */
.comparison-col ul li.bullet-active::before {
  transform: scale(1);
  opacity: 1;
}
.comparison-col--altiva ul li.bullet-active::before {
  box-shadow: 0 0 8px rgba(199,210,254,0.5);
}

.diff-closing {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--gray-medium);
  max-width: var(--text-max);
  margin: 48px auto 0;
  font-style: italic;
  text-align: center;
}

/* ============================================
   SEÇÃO 04 — PROCESSO (Timeline com scroll)
   ============================================ */
.timeline { position: relative; max-width: 700px; margin: 64px auto 0; }

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.06);
}

.timeline-progress {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--accent), var(--ice-blue));
  transition: height 0.6s var(--ease-out);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(199,210,254,0.3);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 64px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  background: var(--black);
  transition: border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  z-index: 2;
}

.timeline-item.is-active .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 16px rgba(199,210,254,0.4);
}

.timeline-pill {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(199,210,254,0.1);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.timeline-title { font-size: 20px; font-weight: 700; color: var(--white-pure); margin-bottom: 12px; }
.timeline-text { font-size: 15px; line-height: 1.65; color: #BBBBBB; }

.timeline-details {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timeline-details li {
  font-size: 13px;
  color: #999999;
  padding-left: 16px;
  position: relative;
}
.timeline-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.timeline-card {
  background: var(--gray-deep);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  opacity: 0.5;
  transform: translateX(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item.is-active .timeline-card {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(199,210,254,0.1);
}

/* ============================================
   SEÇÃO 05 — BENEFÍCIOS (Centralizada, sem emojis)
   ============================================ */
.benefits-section .headline-section { color: var(--gray-deep); text-align: center; margin: 0 auto; }
.benefits-section .body-text { color: #555555; text-align: center; margin-left: auto; margin-right: auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

/* Card último centralizado */
.benefits-grid .benefit-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 420px;
  justify-self: center;
}

.benefit-card {
  background: var(--white-pure);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  text-align: center;
}
.benefit-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.benefit-icon-bar {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ice-blue), var(--accent));
  margin: 0 auto 20px;
}

.benefit-title { font-size: 18px; font-weight: 700; color: var(--gray-deep); margin-bottom: 10px; }
.benefit-text { font-size: 14px; line-height: 1.65; color: #555555; }

/* ============================================
   SEÇÃO 06 — QUEM NÃO É PARA (Novo layout)
   ============================================ */
.filter-section .headline-section { text-align: center; margin: 0 auto; }
.filter-section .subheadline { text-align: center; margin-left: auto; margin-right: auto; margin-top: 20px; }

.altiva-logotype {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filter-container {
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.filter-block {
  background: var(--gray-deep);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  margin-bottom: 20px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.filter-block:hover { border-color: rgba(255,255,255,0.1); }

.filter-block--yes {
  border-color: rgba(199,210,254,0.15);
  background: linear-gradient(135deg, rgba(199,210,254,0.04) 0%, var(--gray-deep) 100%);
}
.filter-block--yes:hover { border-color: rgba(199,210,254,0.25); box-shadow: 0 0 30px rgba(199,210,254,0.08); }

.filter-block h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.filter-block--no h3 { color: var(--gray-text); }
.filter-block--yes h3 { color: var(--accent); }

.filter-block ul li {
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #CCCCCC;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.filter-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, transform 0.4s ease;
}
.filter-block--no .filter-icon { background: rgba(255,255,255,0.06); color: var(--gray-medium); }
.filter-block--yes .filter-icon { background: rgba(199,210,254,0.15); color: var(--accent); }

/* Scroll-activated icon coloring */
.filter-block--no li.icon-active .filter-icon {
  background: rgba(239,68,68,0.15);
  color: #EF4444;
  box-shadow: 0 0 12px rgba(239,68,68,0.2);
  transform: scale(1.1);
}
.filter-block--yes li.icon-active .filter-icon {
  background: rgba(99,102,241,0.2);
  color: #818CF8;
  box-shadow: 0 0 12px rgba(199,210,254,0.3);
  transform: scale(1.1);
}

/* ============================================
   SEÇÃO 07 — CTA FINAL + FORMULÁRIO MULTI-STEP
   ============================================ */
.cta-section { text-align: center; }

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 50%, rgba(224,231,255,0.20) 0%, rgba(224,231,255,0.08) 35%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.cta-content { position: relative; z-index: 1; }

.cta-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}
@media (min-width: 768px) { .cta-points { grid-template-columns: repeat(3, 1fr); } }

.cta-point {
  background: var(--gray-deep);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
}
.cta-point-number { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.cta-point-text { font-size: 14px; line-height: 1.6; color: #BBBBBB; }

/* Multi-step Form */
.multistep-form {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: left;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.form-progress-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.form-progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  background: var(--black);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.form-progress-dot.active {
  border-color: var(--accent);
  color: var(--black);
  background: var(--accent);
  box-shadow: 0 0 16px rgba(199,210,254,0.3);
}

.form-progress-dot.completed {
  border-color: var(--accent);
  color: var(--black);
  background: var(--accent);
}

.form-progress-line {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  transition: background 0.4s ease;
}

.form-progress-line.filled {
  background: var(--accent);
}

.form-slides {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.form-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.form-slide {
  min-width: 100%;
  padding: 4px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--gray-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-input);
  color: var(--white-pure);
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-medium); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199,210,254,0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--gray-deep); color: var(--white-pure); }
.form-group textarea { resize: vertical; min-height: 70px; }

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.form-nav .btn { flex: 1; }

.form-microcopy {
  text-align: center;
  font-size: 12px;
  color: var(--gray-medium);
  margin-top: 12px;
}

.urgency-text {
  text-align: center;
  font-size: 14px;
  color: var(--gray-medium);
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--white-pure);
  color: var(--black);
  padding: 14px 32px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
@media (min-width: 768px) { .btn-primary { padding: 16px 40px; font-size: 16px; } }
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(199,210,254,0.2); }
.btn-primary:active { transform: scale(0.98); box-shadow: 0 1px 4px rgba(0,0,0,0.15); transition-duration: 0.15s; }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-primary--full { width: 100%; }

.btn-sm { padding: 10px 24px; font-size: 13px; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white-pure);
  padding: 12px 28px;
  font-size: 14px;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.btn-outline:active { transform: scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--gray-text);
  padding: 14px 32px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); color: var(--white-pure); border-color: rgba(255,255,255,0.2); }

/* ============================================
   SEÇÃO 08 — FAQ
   ============================================ */
.faq-section .headline-section { color: var(--gray-deep); text-align: center; margin: 0 auto 48px; }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-deep);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  gap: 16px;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--black); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-medium);
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--black); color: var(--white-pure); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; line-height: 1.7; color: #555555; max-width: var(--text-max); }
.faq-item.active .faq-answer { max-height: 400px; }

/* ============================================
   SEÇÃO 09 — FOOTER
   ============================================ */
.footer { padding: 60px 0 32px; text-align: center; }
.footer-logo { height: 80px; margin: 0 auto 16px; opacity: 0.85; }
@media (min-width: 768px) { .footer-logo { height: 100px; } }
.footer-tagline { font-size: 14px; color: var(--gray-medium); margin-bottom: 32px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; }
.footer-links a { font-size: 13px; color: var(--gray-text); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--white-pure); }
.footer-legal { font-size: 12px; color: var(--gray-medium); line-height: 1.6; }

/* ============================================
   PÁGINAS SECUNDÁRIAS
   ============================================ */
.page-secondary { min-height: 100vh; display: flex; flex-direction: column; }
.page-header { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-header-inner { display: flex; align-items: center; justify-content: space-between; }
.page-header-logo { height: 56px; opacity: 0.9; }

.page-content { flex: 1; padding: 80px 0; }
.page-content h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: var(--tracking-normal); margin-bottom: 32px; }
.page-content h2 { font-size: 20px; font-weight: 700; margin: 36px 0 14px; }
.page-content p { font-size: 15px; line-height: 1.7; color: #CCCCCC; margin-bottom: 14px; max-width: var(--text-max); }
.page-content ul { margin-bottom: 14px; padding-left: 20px; }
.page-content ul li { font-size: 14px; line-height: 1.65; color: #BBBBBB; padding: 3px 0; list-style: disc; }

/* Obrigado */
.thankyou-content { text-align: center; max-width: 560px; margin: 0 auto; }
.thankyou-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 32px;
}
.thankyou-content h1 { text-align: center; }
.thankyou-content p { margin-left: auto; margin-right: auto; text-align: center; max-width: 480px; }
.thankyou-question {
  background: var(--gray-deep);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin: 36px auto;
  max-width: 460px;
}
.thankyou-question p { color: var(--gray-text); font-style: italic; font-size: 16px; }

.privacy-page .page-content h1 { color: var(--white-pure); }
.privacy-page .page-content h2 { color: var(--white-pure); }

/* --- Utilities --- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* --- Acessibilidade --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
