/* =================================================================
   Central Point — Redesign Moderno 2025
   Mobile-first: touch-action, 16px inputs, safe-area, sem overflow.
   ================================================================= */

/* ------------------------------------------------------------------ ROOT */
:root {
  --ink:        #0f0c09;
  --ink-2:      #1c1710;
  --paper:      #f9f4eb;
  --paper-2:    #f1e9d8;
  --cream:      #fdf9f3;
  --amber:      #d95520;
  --amber-2:    #f07030;
  --amber-pale: #fff0e8;
  --amber-soft: #f0a870;
  --green:      #1b6040;
  --green-2:    #134830;
  --green-pale: #e2f5ec;
  --muted:      #7a6e60;
  --line:       #e6ddd0;
  --line-2:     #d8ccbc;
  --dark-bg:    #0c0a07;
  --dark-card:  #181410;
  --dark-line:  rgba(255,255,255,.08);

  --maxw: 1200px;
  --r:    22px;
  --r-sm: 14px;
  --r-xs: 10px;

  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "Spline Sans Mono", ui-monospace, monospace;

  --sh-xs: 0 1px 4px rgba(15,12,9,.06);
  --sh-sm: 0 2px 12px rgba(15,12,9,.10), 0 1px 3px rgba(15,12,9,.07);
  --sh-md: 0 8px 32px rgba(15,12,9,.14), 0 3px 10px rgba(15,12,9,.10);
  --sh-lg: 0 24px 64px rgba(15,12,9,.22), 0 8px 24px rgba(15,12,9,.14);
  --sh-xl: 0 40px 100px rgba(15,12,9,.32);
  --sh-amber: 0 6px 28px rgba(217,85,32,.30);
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }

/* Previne zoom duplo-toque e scroll horizontal */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

/* touch-action: manipulation em TODOS os elementos interativos
   impede o zoom por duplo-toque sem remover o pinch-to-zoom */
a,
button,
[role="button"],
label,
select,
summary {
  touch-action: manipulation;
}

a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Quebra palavras longas para não causar scroll horizontal */
h1, h2, h3, h4, p, li {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ------------------------------------------------------------------ GRAIN */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .28; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ LAYOUT */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 860px; }

/* ------------------------------------------------------------------ TYPOGRAPHY */
h1 { font-family: var(--font-display); font-weight: 800; line-height: 1.07; letter-spacing: -.025em; margin: 0; font-size: clamp(2rem, 5.6vw, 4.4rem); }
h2 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.022em; margin: 0; font-size: clamp(1.7rem, 3.8vw, 3rem); }
h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -.015em; margin: 0; font-size: 1.15rem; }
em { font-style: normal; color: var(--amber); }

/* ------------------------------------------------------------------ EYEBROW */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin: 0 0 1rem;
}
.eyebrow.center { justify-content: center; width: 100%; }
.eyebrow .dot {
  flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(217,85,32,.18), 0 0 12px rgba(217,85,32,.28);
}

/* ------------------------------------------------------------------ BUTTONS */
.btn {
  --bg: var(--ink); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer; border: none;
  border-radius: 999px; padding: .88em 1.6em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--sh-sm); letter-spacing: -.01em;
  position: relative; overflow: hidden;
  /* toque preciso sem zoom duplo */
  touch-action: manipulation;
  /* altura mínima de toque (44 px recomendado Apple/Google) */
  min-height: 44px;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none;
}
.btn svg { transition: transform .22s ease; flex-shrink: 0; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); box-shadow: var(--sh-sm); }

.btn-sm { padding: .6em 1.2em; font-size: .9rem; min-height: 40px; }
.btn-lg { font-size: 1.08rem; padding: 1em 2em; }
.btn-xl {
  font-size: 1.2rem; padding: 1.1em 2.2em;
  background: var(--amber); color: #fff;
  box-shadow: var(--sh-amber);
}
.btn-xl:hover { background: var(--amber-2); box-shadow: 0 8px 36px rgba(217,85,32,.40); }
.btn-block { width: 100%; }

.btn-ghost {
  display: inline-flex; align-items: center; min-height: 44px;
  text-decoration: none; font-weight: 600; color: var(--ink);
  padding-bottom: 2px; border-bottom: 2px solid var(--amber);
  transition: color .15s, border-color .15s;
  touch-action: manipulation;
}
.btn-ghost:hover { color: var(--amber); border-color: transparent; }

/* ------------------------------------------------------------------ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(249,244,235,.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(230,221,208,.7);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 64px; }

.logo {
  display: flex; align-items: center; gap: .55em;
  text-decoration: none; font-weight: 800;
  touch-action: manipulation; flex-shrink: 0;
}
.logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 11px; background: var(--ink); color: var(--amber-soft);
  flex-shrink: 0;
}
.logo-text { font-family: var(--font-display); font-size: 1.18rem; letter-spacing: -.022em; }

.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a {
  text-decoration: none; font-weight: 500; color: var(--muted);
  font-size: .93rem; position: relative; transition: color .15s;
  touch-action: manipulation; padding: 6px 0; min-height: 44px;
  display: inline-flex; align-items: center;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--amber);
  border-radius: 2px; transition: width .22s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }
.header-inner .btn { margin-left: 6px; }

/* ------------------------------------------------------------------ LAUNCH BADGE */
.launch-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--amber-pale), #ffe8d8);
  color: var(--amber); border: 1.5px solid rgba(217,85,32,.22);
  border-radius: 999px; padding: .38em 1.1em;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(217,85,32,.12);
  width: fit-content;
}

/* ------------------------------------------------------------------ HERO */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 100px) 0 clamp(40px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 90% -5%, rgba(217,85,32,.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at -5% 90%, rgba(27,96,64,.10) 0%, transparent 50%),
    var(--paper);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(15,12,9,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative; z-index: 1;
}

.hero-copy h1 { margin: 0 0 .5em; }
.hero-copy .lead {
  font-size: 1.1rem; color: var(--muted);
  max-width: 38ch; margin-bottom: 2em;
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 1.3em; }
.hero-actions .btn-lg { background: var(--ink); box-shadow: var(--sh-md); }
.hero-actions .btn-lg:hover { background: var(--ink-2); }
.hero-note { font-size: .85rem; color: var(--muted); margin: 0; }

/* imagem hero */
.hero-visual { position: relative; z-index: 1; min-width: 0; }
.hero-img-frame {
  position: relative; border-radius: var(--r); padding: 10px;
  background: linear-gradient(145deg, #1a1410, #0c0a07);
  box-shadow: var(--sh-xl);
  aspect-ratio: 1200/628; overflow: hidden;
  margin: 0;
}
.hero-img-frame::before {
  content: ""; position: absolute; inset: -1px; border-radius: calc(var(--r) + 1px);
  background: linear-gradient(145deg, rgba(217,85,32,.38), transparent 40%, transparent 60%, rgba(27,96,64,.22));
  z-index: -1;
}
.hero-img-placeholder {
  position: absolute; inset: 10px; border-radius: var(--r-sm);
  display: none;
  color: var(--paper); text-align: center; padding: 24px;
  background: radial-gradient(circle at 50% 40%, #241b12, #0d0a07);
}
.hero-img-placeholder svg { color: rgba(240,168,120,.45); }
.hero-img-placeholder p { margin: 0; font-family: var(--font-display); font-size: 1rem; }
.hero-img-placeholder code { font-family: var(--font-mono); font-size: .67rem; color: rgba(240,168,112,.60); }
.hero-img {
  position: absolute; inset: 10px;
  width: calc(100% - 20px); height: calc(100% - 20px);
  object-fit: contain; object-position: center;
  border-radius: var(--r-sm);
  display: block;
}

/* trust row */
.trust-row {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  justify-content: center;
  margin: clamp(36px,5vw,56px) 0 0; padding: 18px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.trust-row li {
  display: flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .9rem; color: var(--ink-2);
  background: var(--cream); border: 1px solid var(--line);
  padding: .45em 1em; border-radius: 999px;
  box-shadow: var(--sh-xs); flex-shrink: 0;
}
.trust-row svg { color: var(--green); flex-shrink: 0; }

/* ------------------------------------------------------------------ SECTION BASE */
.section { padding: clamp(60px, 9vw, 108px) 0; position: relative; }
.section-head { max-width: 700px; margin: 0 0 clamp(32px,5vw,56px); }
.section-head h2 { margin-bottom: .4em; }
.section-head .section-sub { font-size: 1.05rem; color: var(--muted); margin: .5em 0 0; line-height: 1.65; }

.context { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.context h2 { margin-bottom: .7em; }
.big-text { font-size: 1.14rem; color: var(--muted); line-height: 1.78; }
.big-text strong { color: var(--ink); font-weight: 700; }

.section-dark { background: var(--dark-bg); color: var(--paper); }
.section-dark h2 { color: #f5ede0; }
.section-dark .eyebrow { color: var(--amber-soft); }
.section-dark .eyebrow .dot {
  background: var(--amber-soft);
  box-shadow: 0 0 0 4px rgba(240,168,112,.20), 0 0 14px rgba(240,168,112,.22);
}
.section-dark .section-sub { color: #b8a98c; }

.section-soft { background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%); }

/* ------------------------------------------------------------------ COMO FUNCIONA */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 22px 26px;
  position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow: var(--sh-xs);
  min-width: 0;
}
.step::before {
  content: attr(data-num);
  position: absolute; bottom: -18px; right: -6px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 7.5rem; line-height: 1;
  color: var(--amber); opacity: .055;
  pointer-events: none; letter-spacing: -.04em;
  user-select: none;
}
.step::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0; transition: opacity .22s ease;
  border-radius: var(--r) var(--r) 0 0;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.step:hover::after { opacity: 1; }

.step-num {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600;
  color: var(--amber); background: var(--amber-pale);
  border: 1px solid rgba(217,85,32,.18);
  display: inline-block; padding: .2em .65em; border-radius: 999px;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: .4em; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }

/* ------------------------------------------------------------------ MÓDULOS */
.modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.module {
  border: 1px solid var(--dark-line);
  border-radius: var(--r-sm);
  padding: 22px 18px;
  background: linear-gradient(160deg, #1e1812, #141009);
  position: relative; overflow: hidden;
  transition: border-color .22s ease, transform .22s ease;
  min-width: 0;
}
.module::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,168,112,.3), transparent);
  opacity: 0; transition: opacity .22s ease;
}
.module:hover { border-color: rgba(217,85,32,.35); transform: translateY(-3px); }
.module:hover::before { opacity: 1; }

.module-num {
  font-family: var(--font-mono); font-size: .67rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-soft); font-weight: 600;
}
.module h3 { font-size: 1.02rem; color: #f0e8d8; margin: .55em 0 .4em; line-height: 1.28; }
.module p { margin: 0; color: #a89880; font-size: .9rem; line-height: 1.62; }

/* bônus */
.bonus {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  border-radius: var(--r); padding: 34px clamp(22px,4vw,46px);
  position: relative; overflow: hidden;
}
.bonus::before {
  content: ""; position: absolute; top: -50px; right: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.bonus-title {
  display: flex; align-items: center; gap: .6em;
  color: #e8fff2; margin-bottom: 18px; font-size: 1.3rem;
}
.bonus-title span {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 10px; background: rgba(255,255,255,.14);
  color: #fff; font-weight: 800; font-size: 1.2rem; flex-shrink: 0;
}
.bonus-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px;
}
.bonus-list li {
  position: relative; padding-left: 1.8em;
  color: #d0eedd; font-weight: 500; font-size: .95rem;
}
.bonus-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: rgba(255,255,255,.7); font-weight: 800;
}

/* ------------------------------------------------------------------ VANTAGENS */
.advantages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.advantage {
  display: flex; gap: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px 20px;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: var(--sh-xs); min-width: 0;
}
.advantage:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.adv-icon {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--green-pale); color: var(--green);
  border: 1px solid rgba(27,96,64,.12);
}
.advantage h3 { font-size: 1.04rem; margin-bottom: .3em; }
.advantage p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* ------------------------------------------------------------------ TRANSPARÊNCIA */
.honest {
  background: var(--cream);
  border: 1.5px dashed rgba(217,85,32,.28);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--sh-sm);
  position: relative;
}
.honest::before {
  content: "!";
  position: absolute; top: -18px; left: 30px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--sh-amber);
}
.honest h2 { margin-bottom: .65em; }
.honest p { color: var(--muted); font-size: 1.03rem; }
.honest strong { color: var(--ink); font-weight: 700; }

/* ------------------------------------------------------------------ OFERTA */
.offer {
  max-width: 700px; margin: 0 auto;
  background: var(--cream);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px) clamp(22px, 4vw, 56px);
  text-align: center;
  box-shadow: var(--sh-lg);
  position: relative;
  border: 1px solid var(--line);
}
.offer::before {
  content: ""; position: absolute; inset: -2px; border-radius: 30px;
  background: linear-gradient(135deg, var(--amber), rgba(217,85,32,.0) 40%, rgba(27,96,64,.0) 60%, var(--green));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: .5;
}
.offer-top-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.offer-tag {
  display: inline-block; font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, var(--amber-2), var(--amber));
  padding: .38em 1em; border-radius: 999px;
  box-shadow: var(--sh-amber);
}
.offer-save {
  display: inline-block; font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); background: var(--green-pale);
  border: 1.5px solid rgba(27,96,64,.20);
  padding: .38em 1em; border-radius: 999px; font-weight: 700;
}
.offer-title { margin-bottom: .4em; }
.offer-desc { color: var(--muted); margin-bottom: 1.6em; }
.offer-includes {
  list-style: none; padding: 0; margin: 0 auto 1.8em;
  max-width: 440px; text-align: left; display: grid; gap: 11px;
}
.offer-includes li { position: relative; padding-left: 2em; color: var(--muted); font-size: .96rem; }
.offer-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

.price { margin: 0 0 1.5em; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .98rem; }
.price-now { display: flex; align-items: baseline; justify-content: center; gap: .3em; margin-top: .3em; flex-wrap: nowrap; }
.price-now .cur { font-size: 1.05rem; font-weight: 700; color: var(--muted); }
.price-now .val {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--ink); letter-spacing: -.04em; line-height: 1;
}
.price-now .vez { font-size: .93rem; color: var(--muted); }
.offer-fine { font-size: .83rem; color: var(--muted); margin: 1.1em 0 0; }

/* ------------------------------------------------------------------ AVISO DE CADASTRO */
.reg-notice {
  max-width: 700px; margin: 0 auto 28px;
  border-radius: var(--r);
  overflow: hidden;
}
.reg-notice-header {
  display: flex; align-items: center; gap: 12px;
  background: rgba(240,168,112,.18); border: 1px solid rgba(240,168,112,.30);
  padding: 14px 20px;
  border-bottom: none;
  border-radius: var(--r) var(--r) 0 0;
}
.reg-notice-header svg { flex-shrink: 0; color: var(--amber-soft); }
.reg-notice-header strong {
  font-family: var(--font-display); font-size: 1.05rem; color: #f0e0c8;
}
.reg-notice-body {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,168,112,.20);
  border-top: none;
  padding: 18px 20px 20px;
  border-radius: 0 0 var(--r) var(--r);
}
.reg-notice-body p {
  color: #c8b89a; font-size: .95rem; line-height: 1.7; margin-bottom: 10px;
}
.reg-notice-body p strong { color: #f0e0c8; font-weight: 700; }

.reg-notice-alert {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(217,85,32,.12);
  border: 1px solid rgba(217,85,32,.28);
  border-radius: var(--r-xs);
  padding: 14px 16px;
  margin-top: 14px;
}
.reg-notice-alert svg { flex-shrink: 0; margin-top: 2px; color: var(--amber-soft); }
.reg-notice-alert p {
  margin: 0; color: #c8b89a; font-size: .91rem; line-height: 1.7;
}
.reg-notice-alert p strong { color: #f5d4b0; font-weight: 700; }

/* ------------------------------------------------------------------ FORMULÁRIO */
.flash { max-width: 700px; margin: 0 auto 20px; border-radius: 12px; padding: 14px 18px; font-weight: 600; }
.flash-ok { background: rgba(27,96,64,.20); color: #b8e8cc; border: 1px solid rgba(27,96,64,.4); }
.flash-erro { background: rgba(217,85,32,.20); color: #ffd0b0; border: 1px solid rgba(217,85,32,.4); }

.form-card {
  max-width: 700px; margin: 0 auto;
  background: #181410;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}

.field { margin-bottom: 18px; }
.field label {
  display: block; font-weight: 600; font-size: .9rem;
  color: #d8ccba; margin-bottom: 7px;
}
.field .opt { color: #7a6e58; font-weight: 400; }

/* font-size: 16px previne zoom automático no iOS ao focar no campo */
.field input, .field select {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  color: #f0e8d8; background: #0f0c09;
  border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--r-xs);
  padding: .82em 1em;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
  /* altura mínima de toque */
  min-height: 48px;
  touch-action: manipulation;
}
.field input::placeholder { color: #4e4438; }
.field select option { background: #1a1510; }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(217,85,32,.18);
}
.field-error { display: block; color: #ff9060; font-size: .8rem; font-weight: 600; margin-top: 5px; min-height: 0; }
.field.error input, .field.error select { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(217,85,32,.14); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card .btn {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--amber-2), var(--amber));
  box-shadow: var(--sh-amber);
  font-size: 1.05rem;
}
.form-card .btn:hover { background: linear-gradient(135deg, #ff8a50, var(--amber-2)); box-shadow: 0 10px 40px rgba(217,85,32,.45); }
.form-fine { font-size: .8rem; color: #6a5e50; text-align: center; margin: 14px 0 0; line-height: 1.6; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------ FAQ */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-sm); overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-item[open] { border-color: rgba(217,85,32,.22); }

.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px;
  font-weight: 700; font-family: var(--font-display);
  font-size: 1.04rem; letter-spacing: -.01em;
  user-select: none; min-height: 60px;
  touch-action: manipulation;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: 1; }
.faq-item .chev { flex-shrink: 0; color: var(--amber); transition: transform .25s ease; }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.72; }

.final-cta {
  text-align: center; margin-top: 50px; padding-top: 42px;
  border-top: 1px solid var(--line);
}
.final-cta h3 { font-size: 1.55rem; margin-bottom: 20px; letter-spacing: -.02em; }

/* ------------------------------------------------------------------ FOOTER */
.site-footer { background: var(--dark-bg); color: #b0a090; padding: 56px 0 40px; }
.footer-inner { display: grid; grid-template-columns: .7fr 1.5fr; gap: 48px; align-items: start; }

.footer-brand .logo-text {
  color: #f0e8d8; font-family: var(--font-display);
  font-size: 1.38rem; font-weight: 800;
  display: block; margin-bottom: .5em;
}
.footer-brand p { font-size: .9rem; max-width: 28ch; color: #7a6e60; line-height: 1.65; margin: 0; }

.footer-legal p { font-size: .83rem; line-height: 1.78; margin: 0 0 .9em; }
.footer-legal strong { color: #d8ccba; }
.footer-links a { color: var(--amber-soft); text-decoration: none; touch-action: manipulation; }
.footer-links a:hover { text-decoration: underline; }
.copy { color: #4e4438 !important; font-size: .78rem; }

/* ------------------------------------------------------------------ STICKY CTA (mobile) */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px;
  /* safe-area-inset-bottom para iPhone com notch/Dynamic Island */
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  text-align: center;
  background: linear-gradient(135deg, var(--amber-2), var(--amber));
  color: #fff; text-decoration: none; font-weight: 700; font-size: 1rem;
  padding: 1em;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(217,85,32,.40), var(--sh-lg);
  letter-spacing: -.01em;
  touch-action: manipulation;
}

/* ------------------------------------------------------------------ ANIMAÇÃO */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ RESPONSIVE — tablet */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy .lead { max-width: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ------------------------------------------------------------------ RESPONSIVE — mobile */
@media (max-width: 680px) {
  /* padding lateral menor */
  .wrap { padding: 0 16px; }

  body { font-size: 16px; }

  /* header simplificado */
  .site-header { }
  .header-inner { height: 60px; gap: 12px; }
  .site-nav { display: none; }
  .header-inner .btn { margin-left: auto; font-size: .85rem; padding: .6em 1.1em; }
  .logo-text { font-size: 1.1rem; }

  /* hero mais compacto */
  .hero { padding: 36px 0 32px; }
  .hero-grid { gap: 28px; }
  .hero-copy .lead { font-size: 1rem; max-width: none; margin-bottom: 1.6em; }
  .hero-actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .launch-badge { font-size: .64rem; }

  /* trust pills em coluna se necessário */
  .trust-row { gap: 8px 10px; }
  .trust-row li { font-size: .84rem; padding: .4em .85em; }

  /* seções */
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head .section-sub { font-size: 1rem; }

  /* steps / módulos / vantagens — 1 coluna */
  .steps, .modules, .advantages, .grid-2 { grid-template-columns: 1fr; }
  .step { padding: 22px 18px 20px; }
  .step::before { font-size: 6rem; }
  .module { padding: 18px 16px; }
  .advantage { padding: 20px 16px; }

  /* bônus lista em coluna */
  .bonus-list { grid-template-columns: 1fr; }
  .bonus { padding: 24px 18px; }
  .bonus-title { font-size: 1.15rem; }

  /* transparência */
  .honest { padding: 24px 18px; }
  .honest::before { left: 22px; top: -16px; width: 32px; height: 32px; font-size: 1rem; }

  /* oferta */
  .offer { padding: 26px 18px; border-radius: 20px; }
  .offer::before { border-radius: 22px; }
  .offer-top-row { flex-direction: column; gap: 8px; }
  .price-now .val { font-size: clamp(2.8rem, 18vw, 4rem); }

  /* aviso de cadastro */
  .reg-notice-header { padding: 12px 16px; }
  .reg-notice-body { padding: 14px 16px 16px; }

  /* formulário */
  .form-card { padding: 20px 16px; border-radius: 16px; }
  .field input, .field select { padding: .78em .9em; }

  /* FAQ */
  .faq-item summary { padding: 16px 16px; font-size: .97rem; }
  .faq-body { padding: 0 16px 16px; }

  /* final CTA */
  .final-cta { margin-top: 36px; padding-top: 32px; }
  .final-cta h3 { font-size: 1.3rem; }
  .final-cta .btn { width: 100%; }

  /* footer */
  .site-footer { padding: 40px 0 32px; }
  .footer-brand p { max-width: none; }

  /* CTA fixo mobile */
  .sticky-cta { display: block; }
}

/* Telas muito pequenas (360px e menos) */
@media (max-width: 380px) {
  .wrap { padding: 0 14px; }
  .header-inner { height: 56px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .trust-row li { font-size: .8rem; }
}

/* ================================================================
   MODAL DE PROCESSAMENTO — Central Point
   ================================================================ */

/* --- overlay --- */
.proc-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(12,10,7,.78);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  opacity: 0; pointer-events: none;
  transition: opacity .38s ease;
}
.proc-overlay.active {
  opacity: 1; pointer-events: all;
}

/* --- card --- */
.proc-card {
  width: 100%; max-width: 420px;
  background: var(--cream);
  border-radius: 28px;
  padding: clamp(32px, 6vw, 48px) clamp(24px, 5vw, 44px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 40px 100px rgba(0,0,0,.50),
    0 10px 30px rgba(0,0,0,.25);
  transform: translateY(28px) scale(.96);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  text-align: center;
  position: relative; overflow: hidden;
}
.proc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--green), var(--amber));
  background-size: 200% 100%;
  animation: proc-shimmer 2s linear infinite;
}
.proc-overlay.active .proc-card {
  transform: translateY(0) scale(1);
}

@keyframes proc-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- spinner + logo --- */
.proc-spinner-wrap {
  position: relative;
  width: 84px; height: 84px;
  margin: 0 auto 24px;
}
.proc-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--amber);
  border-right-color: rgba(217,85,32,.35);
  animation: proc-spin 1s linear infinite;
}
@keyframes proc-spin { to { transform: rotate(360deg); } }

.proc-logo-icon {
  position: absolute; inset: 10px;
  border-radius: 50%;
  background: var(--ink); color: var(--amber-soft);
  display: grid; place-items: center;
}

/* --- label e steps --- */
.proc-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.12rem; color: var(--ink);
  letter-spacing: -.015em; margin: 0 0 22px;
}
.proc-steps {
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 16px 18px;
}

.proc-step {
  display: flex; align-items: center; gap: 12px;
  opacity: .35; transition: opacity .3s ease;
}
.proc-step.active { opacity: 1; }
.proc-step.done { opacity: .6; }

/* ponto animado */
.proc-step-dot {
  flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-2); border: 2px solid var(--line-2);
  transition: background .25s, border-color .25s;
}
.proc-step.active .proc-step-dot {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(217,85,32,.18);
  animation: proc-pulse-dot 1s ease infinite;
}
.proc-step.done .proc-step-dot {
  background: var(--green); border-color: var(--green);
  box-shadow: none; animation: none;
}
@keyframes proc-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(217,85,32,.20); }
  50%       { box-shadow: 0 0 0 6px rgba(217,85,32,.08); }
}

.proc-step-text {
  flex: 1; font-weight: 600; font-size: .93rem; color: var(--ink);
}

/* checkmark do step */
.proc-step-check {
  flex-shrink: 0; opacity: 0; color: var(--green);
  transform: scale(.6);
  transition: opacity .2s ease, transform .2s ease;
}
.proc-step.done .proc-step-check {
  opacity: 1; transform: scale(1);
}

/* --- estado de sucesso --- */
.proc-success { animation: proc-fade-up .45s ease forwards; }
@keyframes proc-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* checkmark SVG animado */
.proc-check-wrap { margin: 0 auto 22px; width: 72px; height: 72px; }
.proc-check-svg { width: 72px; height: 72px; display: block; }

.proc-check-circle {
  stroke: var(--green); stroke-width: 2;
  stroke-dasharray: 152;
  stroke-dashoffset: 152;
  animation: proc-draw-circle .6s cubic-bezier(.65,0,.45,1) forwards;
  transform-origin: center;
  transform: rotate(-90deg);
}
.proc-check-mark {
  stroke: var(--green); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
  animation: proc-draw-check .4s .62s cubic-bezier(.65,0,.45,1) forwards;
}
@keyframes proc-draw-circle { to { stroke-dashoffset: 0; } }
@keyframes proc-draw-check  { to { stroke-dashoffset: 0; } }

.proc-success-title {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); margin: 0 0 .5em;
}
.proc-success-msg {
  font-size: .97rem; color: var(--muted); line-height: 1.7;
  margin: 0 0 22px;
}
.proc-success-msg strong { color: var(--ink); font-weight: 700; }

/* barra de progresso */
.proc-progress-bar {
  height: 5px; background: var(--line);
  border-radius: 3px; overflow: hidden; margin-bottom: 12px;
}
.proc-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--green));
  border-radius: 3px;
  /* duração sincronizada com o setTimeout de redirect no JS */
  animation: proc-bar 2.4s linear forwards;
}
@keyframes proc-bar { to { width: 100%; } }

/* label "Redirecionando..." */
.proc-redirect-label {
  font-size: .88rem; color: var(--muted); font-weight: 600;
  letter-spacing: .02em; margin: 0;
}
.proc-dots span {
  display: inline-block;
  animation: proc-dot 1.2s ease infinite;
}
.proc-dots span:nth-child(1) { animation-delay: 0s; }
.proc-dots span:nth-child(2) { animation-delay: .2s; }
.proc-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes proc-dot {
  0%, 80%, 100% { opacity: .25; transform: translateY(0); }
  40%           { opacity: 1;   transform: translateY(-3px); }
}

/* mobile: card mais compacto */
@media (max-width: 480px) {
  .proc-card { padding: 28px 20px; border-radius: 22px; }
  .proc-success-title { font-size: 1.25rem; }
  .proc-spinner-wrap { width: 76px; height: 76px; }
}

/* reduced motion: remove animações */
@media (prefers-reduced-motion: reduce) {
  .proc-ring { animation: none; }
  .proc-card::before { animation: none; }
  .proc-check-circle, .proc-check-mark { animation: none; stroke-dashoffset: 0; }
  .proc-progress-fill { animation: proc-bar 0s linear forwards; width: 100%; }
  .proc-dots span { animation: none; }
}

/* ================================================================
   PÁGINAS INTERNAS — Política de Privacidade e Termos de Uso
   ================================================================ */

.inner-hero {
  background:
    radial-gradient(ellipse 80% 60% at 80% -10%, rgba(217,85,32,.10) 0%, transparent 50%),
    var(--paper);
  padding: clamp(44px, 7vw, 84px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.inner-hero .eyebrow { margin-bottom: .8rem; }
.inner-hero h1 { margin-bottom: .3em; }
.inner-meta {
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--muted); letter-spacing: .06em; margin: 0;
}

.inner-content { padding: clamp(44px, 7vw, 84px) 0 clamp(56px, 8vw, 96px); }

/* link de volta */
.back-link {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .9rem; color: var(--muted);
  text-decoration: none; margin-bottom: 1.6em;
  touch-action: manipulation; transition: color .15s;
}
.back-link:hover { color: var(--ink); }
.back-link svg { flex-shrink: 0; }

/* tipografia do conteúdo legal */
.prose h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 2.2em 0 .55em; color: var(--ink);
  padding-top: .6em; border-top: 1px solid var(--line);
}
.prose h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.prose h3 { font-size: 1.06rem; margin: 1.4em 0 .35em; color: var(--ink); }
.prose p { color: var(--muted); font-size: 1rem; line-height: 1.82; margin: 0 0 1em; }
.prose ul, .prose ol { padding-left: 1.6em; margin: 0 0 1em; }
.prose li { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: .45em; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a {
  color: var(--amber); text-decoration: underline;
  text-underline-offset: 3px; touch-action: manipulation;
}
.prose a:hover { color: var(--amber-2); }

.highlight-box {
  background: var(--amber-pale);
  border: 1.5px solid rgba(217,85,32,.22);
  border-radius: var(--r-sm); padding: 18px 22px; margin: 0 0 1.8em;
}
.highlight-box p { margin: 0; color: var(--ink-2); font-size: .97rem; }

@media (max-width: 680px) {
  .inner-hero { padding: 32px 0 24px; }
  .inner-content { padding: 36px 0 52px; }
  .prose h2 { font-size: 1.15rem; }
}
