/* ============================================================
   GABRIEL CONSULTORIA — style.css
   Autor: Rosso Labs (@filipe.rosso)
   ============================================================ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap");

/* ── Design Tokens ── */
:root {
  /* Brand Colors */
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-dark: #c2410c;
  --orange-glow: rgba(249, 115, 22, 0.22);
  --orange-subtle: rgba(249, 115, 22, 0.09);

  /* Surface Colors */
  --bg: #141414;
  --bg-card: #1e1e1e;
  --bg-input: #252525;
  --border: #333333;
  --border-hl: #555555;

  /* Typography Colors */
  --text: #f2f2f2;
  --text-muted: rgba(242, 242, 242, 0.5);
  --text-dim: rgba(242, 242, 242, 0.3);

  /* Typography */
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;

  /* Border Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.18s ease;
  --transition-slow: 0.4s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

/* ============================================================
   SCREENS
   ============================================================ */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* scroll cuida do posicionamento */
  padding: 0; /* padding fica no .screen-content */
  z-index: 10;
  overflow: hidden; /* scroll gerenciado pelo SmoothScroll JS */
  visibility: visible;
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear;
  will-change: opacity, transform;
}
.screen.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(28px);
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.45s; /* delay = duração do fade */
}
.screen.exit {
  opacity: 0;
  transform: translateY(-28px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.45s;
}

/* ── Smooth scroll viewport dentro de cada tela ── */
.screen-scroll {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none; /* recebido pelo wrapper externo */
}
.screen-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  pointer-events: all;
}

/* ── Stagger de entrada dos elementos ── */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Stagger aplicado só no wrapper pai — sem pointer-events: none */
.stagger-in > * {
  animation: revealUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stagger-in > *:nth-child(1) {
  animation-delay: 0.04s;
}
.stagger-in > *:nth-child(2) {
  animation-delay: 0.1s;
}
.stagger-in > *:nth-child(3) {
  animation-delay: 0.16s;
}
.stagger-in > *:nth-child(4) {
  animation-delay: 0.22s;
}
.stagger-in > *:nth-child(5) {
  animation-delay: 0.28s;
}
.stagger-in > *:nth-child(6) {
  animation-delay: 0.34s;
}

/* ── Orb Background ── */
.bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
}
.orb-a {
  width: 400px;
  height: 400px;
  background: var(--orange);
  top: -120px;
  right: -80px;
  animation: orbA 9s ease-in-out infinite;
}
.orb-b {
  width: 280px;
  height: 280px;
  background: var(--orange-dark);
  bottom: -60px;
  left: -60px;
  animation: orbB 11s ease-in-out infinite;
}
@keyframes orbA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, 16px);
  }
}
@keyframes orbB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -12px);
  }
}

/* ── Shared Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* ============================================================
   WELCOME SCREEN
   ============================================================ */
.w-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 100svh;
  padding: 32px 0;
  gap: 28px;
}

/* Logo */
.w-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px var(--orange-glow);
}
.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.logo-wordmark span {
  color: var(--orange);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Copy */
.w-copy {
  text-align: center;
}
.w-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 9px;
}
.w-copy h1 em {
  font-style: normal;
  color: var(--orange);
}
.w-copy p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 310px;
  margin: 0 auto;
}

.seo-copy {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 18px 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.seo-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
}

.seo-copy h2 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.seo-copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.seo-features {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 8px;
}

.seo-features li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.seo-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}

.seo-update {
  font-size: 0.78rem;
  color: rgba(242, 242, 242, 0.55);
  margin-bottom: 18px;
}

.faq-section {
  width: 100%;
  max-width: 380px;
  margin: 18px auto 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-section h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* Name form */
.name-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* ── Shared Input ── */
.fi {
  width: 100%;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
}
.fi::placeholder {
  color: #555;
}
.fi:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-orange {
  width: 100%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    opacity var(--transition-fast);
  box-shadow: 0 4px 22px rgba(249, 115, 22, 0.32);
}
.btn-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.44);
}
.btn-orange:active {
  transform: scale(0.98);
}
.btn-orange:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.btn-orange svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-whatsapp {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    opacity var(--transition-fast);
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:active {
  transform: scale(0.98);
}
.btn-whatsapp:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.btn-whatsapp svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  fill: #fff;
}

.btn-gray {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition:
    border-color var(--transition-base),
    color var(--transition-base);
}
.btn-gray:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-gray svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.btn-confirm {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  padding: 15px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}
.btn-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(249, 115, 22, 0.42);
}
.btn-confirm:active {
  transform: scale(0.98);
}
.btn-confirm svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   QUIZ SCREEN
   ============================================================ */
.q-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  min-height: 100svh;
  padding: 24px 0 32px;
  margin: 0 auto;
  gap: 16px;
}

/* Header */
.q-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding-bottom: 2px;
}

.q-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.q-logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.q-logo-name span {
  color: var(--orange);
}

/* Progress Bar */
.prog-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.prog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}
.prog-track {
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: #2a2a2a;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* Badge */
.q-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

/* Question Block */
.q-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.35s ease both;
}

.q-title {
  text-align: center;
  width: 100%;
}
.q-title h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
}
.q-title h2 em {
  font-style: normal;
  color: var(--orange);
}
.q-title p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.5;
}

/* Nav */
.q-nav {
  width: 100%;
  display: flex;
  gap: 9px;
  justify-content: flex-start;
}

/* Footer / Terms */
.q-terms {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
  padding: 0 6px;
}
.q-terms strong {
  color: rgba(242, 242, 242, 0.55);
}

.q-footer {
  font-size: 0.58rem;
  color: var(--text-dim);
  text-align: center;
}
.q-footer a {
  color: inherit;
  text-decoration: none;
}
.q-footer a:hover {
  color: var(--orange);
}

/* Multi-select hint */
.multi-hint {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}

/* ============================================================
   OPTION CARDS
   ============================================================ */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.olist {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

/* Base card */
.ocard {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.ocard:hover {
  border-color: var(--orange);
  background: var(--orange-subtle);
  transform: translateY(-1px);
}
.ocard.sel {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.13);
  box-shadow: 0 0 0 1px var(--orange);
}

/* Card image area */
.ocard .cimg {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background: var(--bg-input);
  overflow: hidden;
}
.ocard .cimg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ocard .cph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 2.2rem;
}
.ph-m {
  background: linear-gradient(160deg, #2a1500, #4a2800);
}
.ph-f {
  background: linear-gradient(160deg, #150028, #2a0050);
}

/* Card body */
.cbody {
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 50px;
}
.ocard.list-card .cbody {
  min-height: 56px;
}

/* Image-right card */
.ocard.img-right {
  flex-direction: row;
  align-items: stretch;
}
.ocard.img-right .cbody {
  flex: 1;
  padding: 14px;
}
.ocard.img-right .cimg-side {
  width: 80px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-input);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.ocard.img-right .cimg-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card text */
.ctext {
  flex: 1;
}
.clabel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--text);
  display: block;
}
.csub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

/* Check circle */
.ccheck {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
    background var(--transition-base),
    border-color var(--transition-base);
}
.ocard.sel .ccheck,
.ocard:hover .ccheck {
  border-color: var(--orange);
  background: var(--orange);
}
.ccheck svg {
  width: 11px;
  height: 11px;
  fill: #fff;
  opacity: 0;
  transition: opacity 0.15s;
}
.ocard.sel .ccheck svg {
  opacity: 1;
}
.ccheck.sq {
  border-radius: 5px;
}

/* ============================================================
   WEIGHT & HEIGHT INPUTS
   ============================================================ */
.unit-toggle {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.unit-btn {
  padding: 7px 22px;
  border-radius: 99px;
  cursor: pointer;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: all var(--transition-base);
}
.unit-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.big-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  text-align: center;
  color: var(--text);
  line-height: 1;
}
.big-val sup {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 600;
}

.num-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.nc-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
  transition:
    border-color var(--transition-base),
    background var(--transition-base);
}
.nc-btn:hover {
  border-color: var(--orange);
  background: var(--orange-subtle);
}
.nc-btn:active {
  transform: scale(0.92);
}

/* Ruler */
.ruler-center {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.ruler-needle {
  width: 2px;
  height: 50px;
  background: var(--orange);
}
.ruler-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--orange);
}
.ruler-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ============================================================
   ANALYSIS SCREEN
   ============================================================ */
#s-analysis {
  background: var(--bg);
}

.analysis-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 100svh;
  gap: 28px;
  padding: 32px 8px;
}

.analysis-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  border: 2px solid rgba(249, 115, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  position: relative;
  box-shadow: 0 0 60px var(--orange-glow);
}
.analysis-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--orange);
  animation: spin 0.9s linear infinite;
}

.analysis-title {
  text-align: center;
}
.analysis-title h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 8px;
}
.analysis-title h2 em {
  font-style: normal;
  color: var(--orange);
}
.analysis-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Analysis Steps */
.analysis-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.an-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  transition: background 0.3s;
}
.an-step.active {
  background: rgba(249, 115, 22, 0.07);
}

.an-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  transition: all 0.4s;
}
.an-step.active .an-step-icon {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.12);
}
.an-step.done .an-step-icon {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
}

.an-step-text {
  flex: 1;
}
.an-step-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.an-step.active .an-step-label {
  color: var(--text);
}
.an-step.done .an-step-label {
  color: #22c55e;
}

.an-step-status {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 2px;
  transition: color 0.3s;
}
.an-step.active .an-step-status {
  color: var(--orange-light);
}
.an-step.done .an-step-status {
  color: #22c55e;
}

.an-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s;
}
.an-step.active .an-dot {
  background: var(--orange);
  animation: pulseDot 1s ease-in-out infinite;
}
.an-step.done .an-dot {
  background: #22c55e;
  animation: none;
}

/* Progress bar */
.analysis-bar-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.analysis-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.analysis-bar-track {
  width: 100%;
  height: 6px;
  background: #2a2a2a;
  border-radius: 99px;
  overflow: hidden;
}
.analysis-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   CONFIRM SCREEN
   ============================================================ */
.conf-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 100svh;
  gap: 18px;
  padding: 32px 0;
}

.conf-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 44px var(--orange-glow);
  font-size: 2.2rem;
}

.conf-title {
  text-align: center;
}
.conf-title h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.1;
  margin-bottom: 7px;
}
.conf-title h2 em {
  font-style: normal;
  color: var(--orange);
}
.conf-title p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Summary box */
.sum-box {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 220px;
  overflow-y: auto;
}
.sum-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.sum-row + .sum-row {
  border-top: 1px solid #2a2a2a;
  padding-top: 9px;
}
.sum-l {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  flex-shrink: 0;
}
.sum-v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange-light);
  text-align: right;
}

/* Contact form */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.send-msg {
  font-size: 0.8rem;
  text-align: center;
  min-height: 18px;
}
.send-msg.ok {
  color: #4ade80;
}
.send-msg.err {
  color: #f87171;
}

/* ============================================================
   LOADING OVERLAY
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(249, 115, 22, 0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.overlay p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   ONLINE COUNTER
   ============================================================ */
.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: #86efac;
}
.online-counter strong {
  color: #4ade80;
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.testimonials-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  border-radius: var(--r-lg);
}
.testimonial-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.testimonial-meta {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 1px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.t-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-hl);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}
.t-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ============================================================
   STATS COMPARISON
   ============================================================ */
.stats-compare {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats-col {
  width: 100%;
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stats-col--without {
  background: rgba(248, 113, 113, 0.06);
  border: 1.5px solid rgba(248, 113, 113, 0.2);
}
.stats-col--with {
  background: rgba(249, 115, 22, 0.07);
  border: 1.5px solid rgba(249, 115, 22, 0.3);
}

.stats-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stats-col-icon {
  font-size: 1.4rem;
}
.stats-col-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--text);
}

.stats-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stats-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.stats-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
}
.stats-pct.bad {
  color: #f87171;
}
.stats-pct.good {
  color: var(--orange-light);
}

.stats-track {
  width: 100%;
  height: 7px;
  background: #2a2a2a;
  border-radius: 99px;
  overflow: hidden;
}
.stats-fill {
  height: 100%;
  border-radius: 99px;
  width: 0%;
}
.stats-fill.bad {
  background: linear-gradient(90deg, #b91c1c, #f87171);
}
.stats-fill.good {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
}

.stats-col-footer {
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  text-align: center;
}
.bad-footer {
  background: rgba(248, 113, 113, 0.08);
  color: #fca5a5;
}
.good-footer {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-light);
}
.good-footer strong {
  color: #fff;
}

.stats-divider {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ============================================================
   THANKS SCREEN
   ============================================================ */
.thanks-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 100svh;
  gap: 24px;
  padding: 32px 0;
}

.thanks-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 0 50px var(--orange-glow);
}

.thanks-title {
  text-align: center;
}
.thanks-title h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 9px;
}
.thanks-title h2 em {
  font-style: normal;
  color: var(--orange);
}
.thanks-title p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.thanks-socials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    opacity var(--transition-fast);
}
.social-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.social-btn:hover {
  transform: translateY(-2px);
}
.social-btn:active {
  transform: scale(0.98);
}

.social-instagram {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}
.social-instagram:hover {
  box-shadow: 0 6px 28px rgba(220, 39, 67, 0.45);
}

.social-tiktok {
  background: #000;
  color: #fff;
  border: 1.5px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.social-tiktok:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}

.thanks-footer {
  font-size: 0.58rem;
  color: var(--text-dim);
  text-align: center;
}
.thanks-footer a {
  color: inherit;
  text-decoration: none;
}
.thanks-footer a:hover {
  color: var(--orange);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 480px) {
  .screen-content {
    padding: 0 20px;
  }
  .w-copy h1 {
    font-size: 2.3rem;
  }
  .q-title h2 {
    font-size: 1.55rem;
  }
}

/* ============================================================
   TRUST BADGES (Tela de boas-vindas)
   ============================================================ */
.trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-icon {
  font-size: 0.85rem;
}

/* ── Terms hint na welcome ── */
.w-terms-hint {
  font-size: 0.62rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
  margin-top: 2px;
}
.w-terms-hint a {
  color: rgba(249, 115, 22, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.w-terms-hint a:hover {
  color: var(--orange);
}

/* ============================================================
   UNCODIXFY OVERRIDES
   ============================================================ */
:root {
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 12px;
  --orange-glow: transparent;
}

.bg-orbs {
  display: none !important;
}

.logo-icon,
.q-logo-icon {
  background: #1f1f1f !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.logo-sub,
.q-logo-name,
.q-badge,
.trust-badge,
.seo-tag,
.btn-orange,
.btn-whatsapp,
.btn-confirm {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.seo-copy,
.faq-section,
.name-form,
.btn-orange,
.btn-whatsapp,
.btn-confirm,
.btn-gray,
.prog-track,
.prog-fill,
.trust-badge,
.faq-item strong {
  border-radius: 10px !important;
}

.fi {
  box-shadow: none !important;
}

.fi:focus {
  border-color: var(--orange) !important;
  box-shadow: none !important;
}

.btn-orange,
.btn-confirm {
  background: var(--orange) !important;
  color: #fff !important;
  box-shadow: none !important;
  transition: background 0.15s ease !important;
}

.btn-whatsapp {
  background: #128c7e !important;
  color: #fff !important;
  box-shadow: none !important;
  transition: background 0.15s ease !important;
}

.btn-orange:hover,
.btn-whatsapp:hover,
.btn-confirm:hover {
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.95 !important;
}

button,
.btn-gray {
  border-radius: 10px !important;
}

.btn-gray:hover {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}

.prog-track {
  background: #242424 !important;
  border-radius: 8px !important;
}

.prog-fill {
  background: var(--orange) !important;
  border-radius: 8px !important;
  transition: width 0.2s ease !important;
}

.q-badge {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.q-block,
.stagger-in > *,
.screen,
.screen.hidden,
.screen.exit {
  animation: none !important;
  transition:
    opacity 0.2s ease,
    visibility 0s linear !important;
  transform: none !important;
}

.trust-badge {
  border-radius: 10px !important;
}

.w-terms-hint a {
  color: var(--orange) !important;
}

.seo-copy,
.faq-section {
  background: rgba(255, 255, 255, 0.03) !important;
}

/* ── Links no q-terms ── */
.q-terms a {
  color: rgba(249, 115, 22, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.q-terms a:hover {
  color: var(--orange);
}

/* ============================================================
   GUARANTEE STRIP (Tela de confirmação)
   ============================================================ */
.guarantee-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.68rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.guarantee-strip span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── LGPD hint abaixo do botão ── */
.conf-lgpd-hint {
  font-size: 0.62rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}
.conf-lgpd-hint a {
  color: rgba(249, 115, 22, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.conf-lgpd-hint a:hover {
  color: var(--orange);
}

/* ============================================================
   BANNER LGPD
   ============================================================ */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #1a1a1a;
  border-top: 1px solid #2e2e2e;
  padding: 14px 20px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}
.lgpd-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.lgpd-content {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lgpd-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.lgpd-content p strong {
  color: var(--text);
}
.lgpd-content p a {
  color: var(--orange-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lgpd-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lgpd-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.lgpd-accept {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: #fff;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.28);
}
.lgpd-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.4);
}
.lgpd-more {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.76rem;
}
.lgpd-more:hover {
  color: var(--text);
  border-color: var(--border-hl);
}
