/* ─── DESIGN SYSTEM TOKENS ───────────────────────────────────── */
:root {
  --bg: #FFFFFF;
  --bg-2: #F4ECDD;
  --surface: #FFFFFF;
  --ink: #1A1814;
  --ink-2: #4A4239;
  --muted: #837A6F;
  --hairline: #E8DFCE;

  --brand: #1F2150;     
  --brand-2: #2D2F6B;
  --accent: #0597d3;    
  --accent-2: #0597d3;

  --peach: #E4ECF8;
  --peach-2: #CFDCF1;
  --sky: #E4ECF8;
  --sky-2: #CFDCF1;
  --mint: #D9EBDD;

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  
  --shadow-sm: 0 1px 2px rgba(31, 33, 80, .04), 0 4px 12px rgba(31, 33, 80, .04);
  --shadow-md: 0 4px 12px rgba(31, 33, 80, .06), 0 20px 40px -10px rgba(31, 33, 80, .08);
  --shadow-lg: 0 30px 60px -20px rgba(31, 33, 80, .18), 0 12px 24px -8px rgba(31, 33, 80, .08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* ─── NAVEGAÇÃO ──────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.nav-logo .dot-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: white;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { background: var(--brand-2); transform: translateY(-1px); }
.nav-cta-pop { color: #0597d3; margin-left: 2px; }

.burger { display: none; background: none; border: none; cursor: pointer; }

/* ─── LAYOUT HERO (DESKTOP) ─────────────────────────────────── */
.hero {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 7px 14px 7px 8px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.eyebrow .badge {
  background: gray;
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.badge-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px !important; 
  background: #FFF0EA;          
}

.badge-img img {
  height: 14px;                 
  width: auto;                 
  display: block;
}

.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.h1 em { font-style: italic; font-weight: 500; color: var(--accent); position: relative; }

.h1-answer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}
.h1-answer b {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.ans-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--brand);
  color: white;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
}
.ans-pill .ans-n { color: var(--accent); font-weight: 700; }
.ans-pill .ans-sep { color: rgba(255,255,255,.3); }

.lede { font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0 0 32px; }

.cta-row { display: flex; align-items: center; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 24px -6px #0597d3;, 0 2px 0 rgba(0,0,0,.05) inset;
}

.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 6px 2px;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.micro-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--hairline);
  font-size: 13px;
  color: var(--ink-2);
}
.mp-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--hairline); }

/* GRAPHIC SCENE (Direita) */
.hero-right { position: relative; height: 500px; }
.scene { position: absolute; inset: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(20px); }
.blob-peach { width: 450px; height: 450px; background: var(--peach-2); top: 10%; left: 10%; opacity: 0.7; }
.blob-sky { width: 250px; height: 250px; background: var(--sky-2); bottom: 10%; right: 10%; opacity: 0.6; }

.card-float { position: absolute; background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 16px; border: 1px solid rgba(31, 33, 80, .05); }
.card-timer { top: 40px; right: 20px; width: 220px; }
.card-timer .label { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); text-transform: uppercase; font-weight: 600; }
.card-timer .pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.card-timer .timer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 12px 0; }
.card-timer .tile { background: var(--bg-2); border-radius: 8px; padding: 8px; text-align: center; }
.card-timer .tile .v { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--brand); }
.card-timer .tile .k { font-size: 10px; color: var(--muted); }
.card-timer .bar { height: 4px; background: var(--hairline); border-radius: 2px; position: relative; }
.card-timer .bar::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 85%; background: var(--accent); }
.card-timer .foot { font-size: 11px; margin-top: 8px; color: var(--ink-2); }

.card-ticket { bottom: 160px; left: 20px; width: 240px; display: flex; align-items: center; gap: 12px; }
.card-ticket .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: white; display: grid; place-items: center; font-weight: 700; }
.card-ticket .meta .top { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; }
.card-ticket .meta .msg { font-size: 13px; font-weight: 600; margin: 2px 0; }
.card-ticket .meta .time { font-size: 11px; color: var(--muted); }

.card-solved { bottom: 40px; right: 40px; width: 240px; }
.card-solved .row { display: flex; align-items: center; gap: 12px; }
.card-solved .check { width: 36px; height: 36px; background: var(--mint); color: #15803D; border-radius: 50%; display: grid; place-items: center; }
.card-solved .check svg { width: 20px; height: 20px; }
.card-solved .label-up { font-size: 11px; color: var(--muted); text-transform: uppercase; }
.card-solved .label-down { font-family: var(--font-display); font-size: 20px; font-weight: 600; }

.dots { position: absolute; width: 60px; height: 60px; display: grid; grid-template: repeat(5, 1fr) / repeat(5, 1fr); gap: 4px; opacity: 0.15; }
.dots span { background: var(--brand); border-radius: 50%; }
.dots-tl { top: 20px; left: 40%; }
.iso-stage { position: absolute; width: 100%; height: 120px; bottom: 20px; background: radial-gradient(ellipse, rgba(31,33,80,0.06) 0%, transparent 70%); }

/* ─── BLOCOS DE CONTEÚDO ─────────────────────────────────────── */
.bg-cream { background-color: var(--bg-2); }
.content-block { padding: 80px 8%; border-top: 1px solid var(--hairline); }
.block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.section-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); font-weight: 600; display: block; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--brand); letter-spacing: -0.02em; margin: 0 0 20px; }
.section-desc { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; }

.features-list { display: flex; flex-direction: column; gap: 32px; }
.feature-item b { font-family: var(--font-display); font-size: 20px; color: var(--ink); display: block; margin-bottom: 6px; }
.feature-item p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.5; }

.trust { margin-top: 32px; display: flex; align-items: center; gap: 32px; }
.trust-num { display: flex; flex-direction: column; font-family: var(--font-display); }
.trust-num .big { font-size: 36px; font-weight: 700; color: var(--brand); line-height: 1; }
.trust-num .lbl { font-family: var(--font-body); font-size: 12px; color: var(--muted); margin-top: 6px; }
.trust-sep { width: 1px; height: 40px; background: var(--hairline); }
.partner-chip { background: var(--surface); border: 1px solid var(--hairline); padding: 8px 16px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); }
.partner-chip .swatch { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.text-center { text-align: center; }

/* Accordion */
.accordion { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 16px; }
.accordion-item { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-header { width: 100%; padding: 20px 28px; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--brand); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header:hover { background: rgba(244, 236, 221, 0.3); }
.accordion-body { max-height: 0; overflow: hidden; padding: 0 28px; background: var(--surface); transition: max-height 0.3s ease-out, padding 0.3s ease; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.accordion-footer { text-align: center; margin-top: 40px; font-size: 15px; color: var(--ink-2); }
.accordion-footer a { color: var(--accent); font-weight: 700; text-decoration: none; border-bottom: 1.5px solid transparent; transition: border-color 0.2s, color 0.2s; margin-left: 4px; }
.accordion-footer a:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* Form */
.form-section { background: var(--brand); border-radius: 0; margin: 40px 0 0 0; padding: 64px 8%; }
.form-wrapper { max-width: 600px; margin: 0 auto; }
.form-group-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.custom-input { width: 100%; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--r-sm); padding: 16px; color: white; font-family: var(--font-body); font-size: 15px; margin-bottom: 16px; transition: border-color 0.2s; }
.custom-input:focus { outline: none; border-color: var(--accent); background: rgba(255, 255, 255, 0.1); }
.custom-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.feedback-box { margin-top: 20px; padding: 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; background: var(--mint); color: var(--ink); border: 1px solid var(--hairline); }
.hidden { display: none; }

.foot-tag { 
  background: var(--brand);
  color: rgba(255, 255, 255, 0.4);
  padding: 40px 0; 
  font-family: var(--font-mono); 
  font-size: 11px; 
  text-align: center; 
  letter-spacing: .06em; 
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── MEDIA QUERY: TRATAMENTO RESPONSIVO NATIVO (MOBILE) ─────── */
@media (max-width: 992px) {
  /* Nav Mobile */
  .nav { padding: 18px 24px; }
  .nav-links, .nav-cta { display: none; } /* Oculta menu tradicional */
  .burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; height: 24px; justify-content: center;
  }
  .burger span { width: 24px; height: 2px; background: var(--brand); border-radius: 2px; }

  /* Hero Mobile */
  .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 0; }
  .hero-right { display: none; } /* Remove gráficos complexos flutuantes */
  
  .h1 { font-size: 38px; }
  .lede { font-size: 16px; margin-bottom: 24px; }
  .h1-answer { font-size: 15px; flex-wrap: wrap; }
  
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary { justify-content: center; text-align: center; }
  .btn-ghost { text-align: center; align-self: center; margin-top: 12px; }
  
  .micro-proof { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mp-sep { display: none; }

  /* Seções de Conteúdo Mobile */
  .content-block { padding: 48px 24px; }
  .block-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-title { font-size: 28px; }
  
  /* Formulário Mobile */
  .form-section { margin: 24px 16px; padding: 32px 20px; }
  .form-group-split { grid-template-columns: 1fr; gap: 0; }
}