/* =========================================================
   .colb — Registro de Marca
   ========================================================= */

:root {
  --roxo: #6349D1;
  --roxo-hover: #5139BE;
  --roxo-escuro: #2E1E7E;
  --roxo-claro: #E7E2FA;
  --grafite: #1F1F23;
  --cinza-900: #2E2E32;
  --cinza-700: #4B4B52;
  --cinza-500: #8A8A92;
  --cinza-300: #D8D8DC;
  --cinza-100: #EFEFF1;
  --off: #F3F1EE;
  --branco: #FFFFFF;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 28px;

  --ff-display: 'Fraunces', ui-serif, Georgia, serif;
  --ff-body: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 40px);

  --shadow-soft: 0 10px 40px -12px rgba(46, 30, 126, 0.18);
  --shadow-hard: 0 24px 60px -20px rgba(46, 30, 126, 0.35);
}

/* =========================================================
   Base / Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--grafite);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* =========================================================
   Tipografia
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roxo);
  padding: 6px 14px;
  border: 1px solid var(--roxo-claro);
  border-radius: 999px;
  background: rgba(99, 73, 209, 0.06);
  margin-bottom: 24px;
  max-width: 100%;
  white-space: normal;
}
.eyebrow-light {
  color: #E4DEFF;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.display, .display-lg, .display-md {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--grafite);
}
.display { font-size: clamp(34px, 5vw, 62px); }
.display-lg { font-size: clamp(30px, 4.4vw, 56px); }
.display-md { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.1; }

.display em, .display-lg em, .display-md em {
  font-style: italic;
  font-weight: 500;
  color: var(--roxo);
}

.highlight {
  position: relative;
  z-index: 0;
  background: var(--roxo);
  color: var(--branco);
  padding: 0.14em 0.32em;
  border-radius: 10px;
  /* slice (padrão) = uma única tarja que atravessa as linhas */
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}

.highlight-inline {
  background: var(--roxo-claro);
  color: var(--roxo-escuro);
  padding: 0.04em 0.3em;
  border-radius: 4px;
  font-weight: 600;
}

.lede {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--cinza-700);
  max-width: 54ch;
  margin: 0 0 28px;
  line-height: 1.55;
}

/* Nome da marca no corpo do texto */
.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--roxo);
}
.brand-name sup {
  font-size: 0.5em;
  font-weight: 500;
  margin-left: 1px;
  vertical-align: super;
  line-height: 0;
}
/* Em fundos escuros (manifesto, processo, cta-final, footer bottom) o roxo fica escuro demais */
.manifesto .brand-name,
.processo .brand-name,
.cta-final .brand-name,
.site-footer .brand-name {
  color: #B7A7FF;
}

.dim { color: var(--cinza-500); }

/* =========================================================
   Botões
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 14px 26px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

.btn-primary {
  background: var(--roxo);
  color: var(--branco);
  box-shadow: 0 10px 24px -10px rgba(99, 73, 209, 0.6);
}
.btn-primary:hover {
  background: var(--roxo-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(99, 73, 209, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--grafite);
  border-color: var(--cinza-300);
}
.btn-ghost:hover {
  border-color: var(--grafite);
  background: var(--cinza-100);
}

/* =========================================================
   Header / Nav — glassmorphism fixo
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 0 rgba(31, 31, 35, 0.04), 0 8px 32px -16px rgba(31, 31, 35, 0.08);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(31, 31, 35, 0.06);
  box-shadow: 0 8px 28px -14px rgba(31, 31, 35, 0.15);
}
/* Compensa o header fixo empurrando o conteúdo */
body { padding-top: 68px; }
@media (max-width: 600px) {
  body { padding-top: 62px; }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand img {
  height: 28px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--cinza-700);
  transition: color .15s;
}
.nav a:hover { color: var(--roxo); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--cinza-300);
  background: var(--branco);
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--grafite);
  margin: 3px auto;
  transition: transform .2s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px var(--pad) 32px;
  gap: 16px;
  background: var(--branco);
  border-top: 1px solid var(--cinza-100);
}
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--grafite);
  padding: 8px 0;
}
.mobile-menu a.btn { padding: 14px 26px; margin-top: 8px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 90px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(80% 60% at 85% -10%, rgba(99,73,209,0.10), transparent 60%),
    radial-gradient(60% 50% at -10% 110%, rgba(99,73,209,0.08), transparent 60%),
    var(--off);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy .display { margin-bottom: 20px; }
.hero-copy .lede { margin-bottom: 24px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-proof {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--cinza-300);
  padding-top: 28px;
}
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--grafite);
  line-height: 1;
}
.hero-proof span {
  font-size: 13px;
  color: var(--cinza-500);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--roxo-claro);
  box-shadow: var(--shadow-hard);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-selo {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  animation: rotate 22s linear infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
  opacity: 0.95;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =========================================================
   Manifesto (dor/urgência)
   ========================================================= */
.manifesto {
  padding: clamp(70px, 9vw, 120px) 0;
  background:
    radial-gradient(80% 70% at 15% 10%, rgba(99, 73, 209, 0.38), transparent 60%),
    radial-gradient(70% 60% at 90% 90%, rgba(99, 73, 209, 0.28), transparent 60%),
    linear-gradient(160deg, #2a2438 0%, #1F1F23 55%, #241d3a 100%);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 720px;
  height: 720px;
  background: radial-gradient(closest-side, rgba(183, 167, 255, 0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.manifesto::after {
  content: "";
  position: absolute;
  inset: auto auto -40% -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(99, 73, 209, 0.25), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.manifesto-inner { position: relative; max-width: 980px; }
.manifesto .display-lg { color: var(--branco); }
.manifesto .display-lg em { color: #B7A7FF; }
.manifesto .dim { color: #7F7F88; }
.manifesto-text {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: #D5D5DC;
  max-width: 62ch;
  margin: 0 0 20px;
}
.manifesto-text strong { color: var(--branco); font-weight: 700; }

/* =========================================================
   Simulação (dobra clara) — "o que pode acontecer"
   ========================================================= */
.simulacao {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--branco);
  position: relative;
  overflow: hidden;
}
.simulacao::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(99, 73, 209, 0.05), transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(255, 107, 107, 0.04), transparent 60%);
  pointer-events: none;
}
.simulacao .container { position: relative; z-index: 1; }
.simulacao-header { margin-bottom: clamp(40px, 5vw, 64px); }
.simulacao-header .section-lede { margin-top: 12px; }
.simulacao-header .section-lede strong { color: var(--grafite); font-weight: 700; }

/* =========================================================
   Dor — simulação interativa (cards + ticker)
   ========================================================= */
.dor-sim {
  margin-top: 0;
  position: relative;
}
.dor-sim-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.dor-card {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .8s ease, opacity .8s ease, border-color .5s ease, background .5s ease;
}
.dor-sim.is-visible .dor-card-you {
  transform: translateY(0);
  opacity: 1;
  transition-delay: .1s;
}
.dor-sim.is-visible .dor-card-them {
  transform: translateY(0);
  opacity: 1;
  transition-delay: .9s;
}
.dor-sim.is-visible .dor-arrow {
  opacity: 1;
  transition-delay: .6s;
}

.dor-card-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9D94C6;
  font-weight: 600;
}
.dor-card-brand {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  color: var(--branco);
  line-height: 1.05;
}
.dor-card-brand sup {
  font-size: 0.45em;
  color: #B7A7FF;
  margin-left: 2px;
  vertical-align: super;
}
.dor-card-meta {
  color: #C7C7CE;
  font-size: 14px;
}
.dor-card-meta strong { color: var(--branco); font-weight: 700; }

.dor-card-status {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.dor-card-status.ok {
  background: rgba(99, 255, 178, 0.12);
  color: #7DF4B8;
  border: 1px solid rgba(99, 255, 178, 0.3);
}
.dor-card-status.danger {
  background: rgba(255, 90, 90, 0.14);
  color: #FF9A9A;
  border: 1px solid rgba(255, 90, 90, 0.35);
}

.dor-card-them {
  background: rgba(255, 60, 60, 0.05);
  border-color: rgba(255, 60, 60, 0.25);
}
.dor-sim.is-visible .dor-card-them {
  animation: pulseDanger 3s ease-in-out 1.6s infinite;
}
@keyframes pulseDanger {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0); }
  50% { box-shadow: 0 0 0 8px rgba(255, 90, 90, 0.08); }
}

.dor-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #B7A7FF;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .6s ease;
}
.dor-arrow svg {
  width: 60px;
  height: 20px;
}
.dor-arrow span { max-width: 140px; text-align: center; line-height: 1.3; color: #9D94C6; }

.dor-ticker {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  max-width: fit-content;
}
.dor-ticker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF6B6B;
  box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.6);
  animation: liveDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 107, 0); }
}
.dor-ticker-text {
  color: #D5D5DC;
  font-size: 15px;
  line-height: 1.4;
}
.dor-ticker-text strong {
  color: var(--branco);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  margin-right: 4px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
  .dor-sim-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dor-arrow svg { transform: rotate(90deg); }
  .dor-arrow { flex-direction: row; gap: 12px; }
  .dor-arrow span { max-width: none; text-align: left; }
  .dor-ticker { flex-wrap: wrap; border-radius: var(--radius); }
}

/* ---- Relógio animado: "A cada 2 minutos" ---- */
.relogio-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow:
    0 24px 60px -20px rgba(31, 31, 35, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* Flutuando SOBRE a foto — canto superior direito, uma camada acima */
.relogio-card--hero {
  position: absolute;
  right: -32px;
  top: -24px;
  max-width: 300px;
  z-index: 4;
  animation: relogioFloat 6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow:
    0 30px 70px -20px rgba(31, 31, 35, 0.35),
    0 8px 20px -8px rgba(99, 73, 209, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}
@keyframes relogioFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.relogio { width: 64px; height: 64px; flex-shrink: 0; position: relative; }
.relogio svg { width: 100%; height: 100%; overflow: visible; }

.relogio-ring {
  fill: var(--branco);
  stroke: var(--cinza-300);
  stroke-width: 1.5;
}
.relogio-face {
  fill: none;
  stroke: rgba(99, 73, 209, 0.08);
  stroke-width: 1;
}
.relogio-mark {
  stroke: var(--cinza-700);
  stroke-width: 2;
  stroke-linecap: round;
}
.relogio-hora,
.relogio-min,
.relogio-seg {
  stroke-linecap: round;
  transform-origin: 40px 40px;
}
.relogio-hora {
  stroke: var(--grafite);
  stroke-width: 3.2;
  animation: relogioSpin 48s linear infinite;
}
.relogio-min {
  stroke: var(--grafite);
  stroke-width: 2.4;
  animation: relogioSpin 4s linear infinite;
}
.relogio-seg {
  stroke: var(--roxo);
  stroke-width: 1.2;
  animation: relogioSpin 1s linear infinite;
  filter: drop-shadow(0 0 4px rgba(99, 73, 209, 0.4));
}
.relogio-pin {
  fill: var(--roxo);
}
@keyframes relogioSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.relogio-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}
.relogio-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--roxo);
  margin-bottom: 4px;
}
.relogio-text strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--grafite);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.relogio-text > span:last-child {
  font-size: 13px;
  color: var(--cinza-700);
  line-height: 1.35;
}

/* Mobile: mantém o relógio no canto superior direito da foto, só reduz */
@media (max-width: 720px) {
  .relogio-card--hero {
    right: -12px;
    top: -16px;
    max-width: 260px;
    padding: 14px 18px;
    gap: 14px;
  }
  .relogio { width: 54px; height: 54px; }
  .relogio-text strong { font-size: 16px; }
  .relogio-text > span:last-child { font-size: 12px; }
  .relogio-label { font-size: 10px; }
}
@media (max-width: 480px) {
  .relogio-card--hero {
    right: -8px;
    top: -12px;
    max-width: 220px;
    padding: 12px 14px;
    gap: 10px;
    border-radius: 18px;
  }
  .relogio { width: 46px; height: 46px; }
  .relogio-text strong { font-size: 14px; }
  .relogio-text > span:last-child { font-size: 11px; line-height: 1.3; }
  .relogio-label { font-size: 9px; }
}

/* ---- Variante clara: cards em fundo branco ---- */
.simulacao .dor-card {
  padding: 32px 30px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 20px 50px -24px rgba(31, 31, 35, 0.15);
}
.simulacao .dor-card-you {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02) 65%, var(--branco) 100%);
  border: 1px solid rgba(34, 197, 94, 0.28);
}
.simulacao .dor-card-them {
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02) 65%, var(--branco) 100%);
  border: 1px solid rgba(239, 68, 68, 0.28);
}
.simulacao .dor-card-label {
  color: var(--cinza-500);
}
.simulacao .dor-card-you .dor-card-label { color: #16A34A; }
.simulacao .dor-card-them .dor-card-label { color: #DC2626; }

.simulacao .dor-card-brand {
  color: var(--grafite);
  font-size: clamp(28px, 3.4vw, 40px);
}
.simulacao .dor-card-brand sup { color: var(--roxo); }

.simulacao .dor-card-meta {
  color: var(--cinza-700);
}
.simulacao .dor-card-meta strong { color: var(--grafite); }

.simulacao .dor-card-status.ok {
  background: rgba(34, 197, 94, 0.12);
  color: #15803D;
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.simulacao .dor-card-status.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #B91C1C;
  border: 1px solid rgba(239, 68, 68, 0.35);
}
.simulacao .dor-sim.is-visible .dor-card-them {
  animation: pulseDangerLight 3s ease-in-out 1.6s infinite;
}
@keyframes pulseDangerLight {
  0%, 100% { box-shadow: 0 20px 50px -24px rgba(31, 31, 35, 0.15), 0 0 0 0 rgba(239, 68, 68, 0); }
  50% { box-shadow: 0 20px 50px -24px rgba(31, 31, 35, 0.15), 0 0 0 10px rgba(239, 68, 68, 0.06); }
}

.dor-card-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  opacity: 0.5;
}
.simulacao .dor-card-you .dor-card-icon { color: #16A34A; }
.simulacao .dor-card-them .dor-card-icon { color: #DC2626; }

.simulacao .dor-arrow { color: var(--roxo); }
.simulacao .dor-arrow span { color: var(--cinza-500); }

.simulacao .dor-ticker {
  background: var(--off);
  border: 1px solid var(--cinza-100);
  margin-left: auto;
  margin-right: auto;
}
.simulacao .dor-ticker-text { color: var(--cinza-700); }
.simulacao .dor-ticker-text strong { color: var(--grafite); }

/* =========================================================
   Diferenciais
   ========================================================= */
.diferenciais {
  padding: clamp(80px, 10vw, 130px) 0;
  background: linear-gradient(180deg, #F5F5F7 0%, #EFEFF1 100%);
  position: relative;
}
.diferenciais::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  pointer-events: none;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header .display-md { margin-bottom: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent 40%);
  pointer-events: none;
  opacity: 0.6;
}
.card > * { position: relative; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--roxo-claro);
}
.card-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--roxo);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--cinza-700);
  margin: 0;
  font-size: 16px;
}
.card p strong { color: var(--grafite); font-weight: 700; }
.card p em { color: var(--roxo); font-style: italic; }

/* =========================================================
   Processo
   ========================================================= */
.processo {
  padding: clamp(80px, 10vw, 130px) 0;
  background: linear-gradient(180deg, #2E1E7E 0%, #6349D1 100%);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
.processo::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.processo .section-header .display-md { color: var(--branco); }
.processo .display-md em { color: #D9CEFF; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}

/* Linha conectora entre as etapas (desktop) */
.steps::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
/* Pulso luminoso que percorre as etapas — sempre da esquerda pra direita */
.steps::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  height: 6px;
  background-image: linear-gradient(90deg,
    transparent 0%,
    rgba(231, 226, 250, 0.4) 30%,
    #E7E2FA 50%,
    rgba(231, 226, 250, 0.4) 70%,
    transparent 100%);
  background-size: 45% 100%;
  background-repeat: no-repeat;
  background-position: -45% 0;
  animation: stepSweep 5.5s cubic-bezier(.65,.05,.36,1) infinite;
  filter: blur(1.5px);
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  pointer-events: none;
}
@keyframes stepSweep {
  0%   { background-position: -45% 0; }  /* fora, à esquerda */
  100% { background-position: 145% 0; }  /* saiu pela direita */
}

.step {
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  transition: background .25s, transform .25s, border-color .25s;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
}
.processo.is-visible .step {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease, background .25s, border-color .25s;
}
.processo.is-visible .step:nth-child(1) { transition-delay: 0s, 0s, 0s, 0s; }
.processo.is-visible .step:nth-child(2) { transition-delay: .15s, .15s, 0s, 0s; }
.processo.is-visible .step:nth-child(3) { transition-delay: .3s, .3s, 0s, 0s; }
.processo.is-visible .step:nth-child(4) { transition-delay: .45s, .45s, 0s, 0s; }

.step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.step-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--branco);
  background: rgba(99, 73, 209, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.3);
}
/* Anel pulsante sequencial — sensação de progressão */
.step-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(231, 226, 250, 0.6);
  opacity: 0;
  pointer-events: none;
}
.processo.is-visible .step-num::after {
  animation: stepRing 5.5s ease-out infinite;
}
.processo.is-visible .step:nth-child(1) .step-num::after { animation-delay: 0.2s; }
.processo.is-visible .step:nth-child(2) .step-num::after { animation-delay: 1.6s; }
.processo.is-visible .step:nth-child(3) .step-num::after { animation-delay: 3.0s; }
.processo.is-visible .step:nth-child(4) .step-num::after { animation-delay: 4.4s; }

@keyframes stepRing {
  0% { transform: scale(0.85); opacity: 0; border-width: 2px; }
  15% { opacity: 1; }
  60% { transform: scale(1.8); opacity: 0; border-width: 1px; }
  100% { transform: scale(1.8); opacity: 0; }
}
/* Glow breve no step-num quando o anel "passa" */
.step-num {
  transition: box-shadow .4s ease, background .4s ease;
}
.processo.is-visible .step:nth-child(1) .step-num { animation: stepGlow 5.5s ease-out infinite 0s; }
.processo.is-visible .step:nth-child(2) .step-num { animation: stepGlow 5.5s ease-out infinite 1.4s; }
.processo.is-visible .step:nth-child(3) .step-num { animation: stepGlow 5.5s ease-out infinite 2.8s; }
.processo.is-visible .step:nth-child(4) .step-num { animation: stepGlow 5.5s ease-out infinite 4.2s; }
@keyframes stepGlow {
  0%, 80%, 100% {
    box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.3);
    background: rgba(99, 73, 209, 0.25);
  }
  8% {
    box-shadow: 0 0 0 0 rgba(231, 226, 250, 0.6), 0 8px 28px -4px rgba(231, 226, 250, 0.5);
    background: rgba(183, 167, 255, 0.55);
  }
}
.step h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.15;
}
.step p {
  margin: 0;
  font-size: 15px;
  color: #D5D5DC;
  line-height: 1.55;
}
.step p em { color: #E7E2FA; font-style: italic; }

/* =========================================================
   Marcas registradas (marquee)
   ========================================================= */
.marcas {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--off);
  overflow: hidden;
}
.marcas .section-header { margin-bottom: 40px; }
.section-lede {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--cinza-700);
  max-width: 62ch;
  margin: 16px auto 0;
}

.marcas-marquee {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  margin-bottom: 40px;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marcas-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeSlide 60s linear infinite;
}
.marcas-marquee:hover .marcas-track { animation-play-state: paused; }

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marca-card {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  background: var(--branco);
  border: 1px solid rgba(31, 31, 35, 0.08);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow:
    0 1px 2px rgba(31, 31, 35, 0.04),
    0 6px 16px -8px rgba(31, 31, 35, 0.1);
}
.marca-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(99, 73, 209, 0.25);
  box-shadow:
    0 2px 4px rgba(31, 31, 35, 0.05),
    0 16px 40px -12px rgba(99, 73, 209, 0.2);
  z-index: 2;
}
.marca-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.marca-card:hover img {
  transform: scale(1.04);
}
.marca-r {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--branco);
  background: rgba(99, 73, 209, 0.92);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  letter-spacing: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.marcas-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 600px) {
  .marca-card { width: 140px; height: 140px; }
  .marca-fg { padding: 16px; }
  .marca-r { width: 24px; height: 24px; font-size: 13px; top: 8px; right: 8px; }
  .marcas-track { animation-duration: 45s; }
}

@media (prefers-reduced-motion: reduce) {
  .marcas-track { animation: none; }
  .marcas-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* =========================================================
   Sobre / Bruna
   ========================================================= */
.sobre {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--branco);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sobre-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off);
  box-shadow: var(--shadow-hard);
}
.sobre-visual img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.sobre-selo {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  animation: rotate 28s linear infinite reverse;
  opacity: 0.9;
  filter: invert(1) brightness(2);
  mix-blend-mode: overlay;
}
.sobre-copy .display-md { margin-bottom: 10px; }
.sobre-role {
  color: var(--roxo);
  font-weight: 600;
  margin: 0 0 20px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.sobre-copy p {
  color: var(--cinza-700);
  max-width: 56ch;
  font-size: 17px;
}
.sobre-copy p strong { color: var(--grafite); }

.creds {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.creds li {
  position: relative;
  padding-left: 26px;
  color: var(--cinza-700);
  font-weight: 500;
}
.creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--roxo);
  box-shadow: 0 0 0 4px var(--roxo-claro);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: clamp(80px, 10vw, 130px) 0; background: var(--off); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.faq details[open] {
  border-color: var(--roxo-claro);
  box-shadow: var(--shadow-soft);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--grafite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--roxo);
  font-family: var(--ff-body);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--cinza-700);
  font-size: 16px;
  line-height: 1.6;
}
.faq details p strong { color: var(--grafite); }

/* =========================================================
   CTA Final
   ========================================================= */
.cta-final {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--grafite);
  color: var(--branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(99,73,209,0.35), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(99,73,209,0.2), transparent 70%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.cta-final .display-md { color: var(--branco); margin-bottom: 20px; }
.cta-final .highlight {
  background: var(--roxo);
  color: var(--branco);
}
.cta-final p {
  font-size: clamp(17px, 1.3vw, 19px);
  color: #C7C7CE;
  margin: 0 auto 36px;
  max-width: 56ch;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding: 64px 0 32px;
  background: var(--branco);
  border-top: 1px solid var(--cinza-100);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--cinza-100);
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { color: var(--cinza-500); margin: 0; font-size: 14px; }
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grafite);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--cinza-700);
  font-size: 15px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--roxo); }

.footer-contact {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--roxo);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.footer-contact:hover .footer-icon { transform: scale(1.1); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small { color: var(--cinza-500); font-size: 13px; }

/* =========================================================
   WhatsApp float
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px -8px rgba(37, 211, 102, 0.7);
}

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 960px) {
  .nav { display: none; }
  .site-header .btn-sm { display: none; }
  .menu-toggle { display: block; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-selo { width: 180px; height: 180px; right: -30px; bottom: -30px; }

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

  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { max-width: 460px; margin: 0 auto; }
  .sobre-selo { width: 140px; height: 140px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .hero-proof {
    flex-wrap: wrap;
    gap: 20px 32px;
  }

  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  .btn-lg { padding: 16px 26px; font-size: 15px; }

  .faq summary { padding: 18px 22px; font-size: 17px; }
  .faq details p { padding: 0 22px 22px; }

  .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}
