/* vietnamese */
/* latin-ext */
/* latin */
/* vietnamese */
/* latin-ext */
/* latin */
/* vietnamese */
/* latin-ext */
/* latin */
/* vietnamese */
/* latin-ext */
/* latin */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* ============================================================
   JOVEM PROFISSIONAL — Landing Page
   Design system: tech + jovem + profissional
   ============================================================ */

:root {
  --bg:       #FAFAF7;
  --bg-alt:   #F2F1EB;
  --ink:      #0B1220;
  --ink-2:    #1B2638;
  --muted:    #5A6478;
  --muted-2:  #8A92A3;
  --line:     #E5E3DC;
  --line-2:   #D6D3C7;

  --primary:  #00C853;
  --primary-d:#00A845;
  --coral:    #FF5A36;
  --coral-d:  #E54822;
  --gold:     #FFD23F;

  --radius:   14px;
  --radius-lg:22px;

  --container: 1200px;

  --shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 1px 3px rgba(11,18,32,.06);
  --shadow:    0 4px 12px rgba(11,18,32,.06), 0 12px 32px rgba(11,18,32,.08);
  --shadow-lg: 0 24px 60px rgba(11,18,32,.18);

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
em { font-style: normal; color: var(--coral); }
strong { font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============== HEADINGS ============== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}

/* ============== KICKER / EYEBROW ============== */
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.kicker.light { color: rgba(255,255,255,.7); }
.eyebrow { font-size: 13px; color: var(--ink); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,200,83,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,200,83,.18); }
  50% { box-shadow: 0 0 0 8px rgba(0,200,83,.04); }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-sm  { padding: 9px 16px; font-size: 14px; }
.btn-lg  { padding: 16px 28px; font-size: 16px; }
.btn-xl  { padding: 20px 36px; font-size: 18px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 0 0 rgba(0,0,0,.18), 0 6px 16px rgba(11,18,32,.18);
}
.btn-primary:hover { transform: translateY(-1px); background: #18233A; }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 0 0 rgba(0,0,0,.18); }

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 0 0 rgba(0,0,0,.15), 0 8px 20px rgba(255,90,54,.3);
}
.btn-coral:hover { transform: translateY(-1px); background: var(--coral-d); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost-dark:hover { background: #fff; color: var(--ink); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #18233A; }

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(250,250,247,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo strong { font-weight: 700; }
.logo-light { color: #fff; }
.logo-mark { width: 32px; height: 32px; }

.nav {
  display: flex; align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--primary); }

.header-cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(11,18,32,.10) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 18px 0 22px;
}
.h1-line { display: block; }
.h1-line em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.h1-line em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4px;
  height: 12px;
  background: var(--gold);
  z-index: -1;
  opacity: .85;
  transform: skew(-6deg);
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 32px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Form card ---- */
.hero-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), transparent 50%, var(--coral));
  -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: .25;
}
.form-head { margin-bottom: 20px; }
.form-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,200,83,.12);
  color: var(--primary-d);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.hero-form h2 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-form .hl {
  background: var(--gold);
  padding: 0 4px;
}
.form-head p { font-size: 14px; color: var(--muted); margin: 0; }

.lead-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 100px; gap: 12px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input {
  border: 1.5px solid var(--line-2);
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.field input:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.field input::placeholder { color: var(--muted-2); }

.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.check input {
  margin-top: 3px;
  accent-color: var(--primary);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.form-foot {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
  margin: 4px 0 0;
  justify-content: center;
}

.form-success {
  text-align: center;
  padding: 30px 10px 10px;
  animation: fadeIn .4s ease;
}
.form-success h3 { font-size: 24px; margin: 16px 0 8px; }
.form-success p  { color: var(--muted); margin: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============== SECTION HEAD ============== */
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.025em;
  margin: 14px 0 14px;
}
.section-head h2 em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--ink); position: relative; }
.section-head h2 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 6px; background: var(--coral); opacity: .85;
}
.section-head p { font-size: 17px; color: var(--muted); margin: 0; max-width: 580px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ============== VIDEO SECTION ============== */
.video-section { padding: 80px 0; background: var(--bg); }
.video-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.vm-item {
  background: #fff;
  padding: 22px 18px;
  text-align: center;
}
.vm-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.vm-item span {
  font-size: 13px;
  color: var(--muted);
}

/* ============== STATS ============== */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0 0 0;
  grid-template-areas: "s1 s2 s3 s4";
  align-items: center;
  gap: 20px;
  position: relative;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #fff 60%, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.12);
  justify-self: center;
}

/* ============== PARTNERS ============== */
.partners {
  padding: 90px 0;
  background: var(--bg);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.partner-logo {
  background: #fff;
  padding: 36px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  transition: background .2s;
}
.partner-logo:hover { background: var(--bg-alt); }
.partner-logo span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.partner-logo.more {
  background: var(--ink);
}
.partner-logo.more span { color: #fff; font-size: 16px; }
.partner-logo.more small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============== STEPS ============== */
.steps { padding: 100px 0; }
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
.step-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-alt);
  color: var(--ink-2);
  padding: 4px 10px;
  border-radius: 5px;
}

/* ============== TESTIMONIALS ============== */
.testimonials { padding: 100px 0; background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testi-video {
  aspect-ratio: 16/9;
  background: var(--ink);
  position: relative;
}
.testi-video iframe { width: 100%; height: 100%; border: 0; }
.testi-video-short { aspect-ratio: 9/16; max-height: 420px; }
.testi-card:has(.testi-video-short) .testi-video {
  display: flex; justify-content: center; background: #000;
}
.testi-card:has(.testi-video-short) .testi-video iframe { width: auto; aspect-ratio: 9/16; height: 100%; }
.testi-body { padding: 22px 24px 26px; }
.testi-body h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.testi-body p { color: var(--muted); margin: 0; font-size: 14px; }

/* ============== CV BANNER ============== */
.cv-banner {
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cv-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,90,54,.18) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: .4;
  pointer-events: none;
}
.cv-banner-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.cv-banner-copy h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  margin: 14px 0 16px;
}
.cv-banner-copy h2 em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--coral);
}
.cv-banner-copy p { color: rgba(255,255,255,.7); font-size: 17px; margin: 0 0 28px; max-width: 480px; }
.cv-banner-preview { display: flex; justify-content: center; }
.cv-mock {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  width: 320px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  color: var(--ink);
}
.cv-mock-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 16px;
}
.cv-mock-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  flex-shrink: 0;
}
.cv-mock-name { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cv-mock-body { display: flex; flex-direction: column; gap: 6px; }
.cv-mock .line {
  display: block;
  height: 9px;
  background: var(--ink);
  border-radius: 3px;
}
.cv-mock .line.thin { height: 5px; background: var(--muted-2); }
.cv-mock .line.dark { background: var(--ink); height: 7px; }
.cv-mock .line.mt { margin-top: 8px; }
.cv-mock .w30 { width: 30%; }
.cv-mock .w40 { width: 40%; }
.cv-mock .w60 { width: 60%; }
.cv-mock .w70 { width: 70%; }
.cv-mock .w80 { width: 80%; }
.cv-mock .w90 { width: 90%; }

/* ============== RIGHTS ============== */
.rights { padding: 100px 0; }
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.right-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s, border-color .2s;
}
.right-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.right-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.right-card h3 { font-size: 20px; margin-bottom: 8px; }
.right-card p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* ============== FAQ ============== */
.faq {
  padding: 100px 0;
  background: var(--bg-alt);
}
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.faq-head {
  position: sticky; top: 100px;
}
.faq-head h2 { font-size: clamp(32px, 4vw, 48px); margin: 12px 0 14px; }
.faq-head p { color: var(--muted); margin: 0 0 24px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  position: relative;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--bg); }
.faq-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============== BLOG ============== */
.blog { padding: 100px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-thumb {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.post-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,.04) 10px 11px);
}
.post-thumb::after {
  content: attr(data-tag);
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 8px;
  border-radius: 4px;
}
.post-thumb-2 { background: linear-gradient(135deg, #1B2638 0%, #2E3F5C 100%); }
.post-thumb-3 { background: linear-gradient(135deg, var(--coral) 0%, #C73E1D 100%); }
.post-thumb-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.post-body { padding: 22px 24px 26px; }
.post-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.post-body h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.25; }
.post-body p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.post-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 2px solid var(--coral);
  padding-bottom: 1px;
}
.post-link:hover { color: var(--coral); }

/* ============== LOCAL / MAPA ============== */
.local {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
}
.local-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.local-copy h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  margin: 14px 0 14px;
}
.local-copy p { color: rgba(255,255,255,.7); margin: 0 0 24px; font-size: 17px; }
.local-address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  padding: 20px 22px;
  border-left: 3px solid var(--coral);
  background: rgba(255,255,255,.04);
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.local-map {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
}
.local-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }

/* ============== FINAL CTA ============== */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.05;
}
.final-cta h2 em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--coral); }
.final-cta p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 32px;
}
.final-cta-foot {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============== FOOTER ============== */
.site-footer {
  background: #06090F;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 14px; max-width: 320px; margin: 14px 0 0; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul li { font-size: 14px; padding: 4px 0; }
.footer-col a { transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}




/* ============== RESPONSIVE ============== */
@media (max-width: 1060px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
  .header-cta .btn-ghost { display: none; }
}

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .stats .container { grid-template-columns: repeat(2, 1fr); grid-template-areas: "s1 s2" "s3 s4"; gap: 32px; }
  .stat-divider { display: none; }
  .rights-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
  .cv-banner-inner, .local-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  body.menu-open .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 720px) {
  .hero { padding: 40px 0 60px; }
  .hero-copy h1 { font-size: clamp(38px, 10vw, 52px); }
  .video-meta { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr; grid-template-areas: "s1" "s2" "s3" "s4"; }
  .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr 90px; }
  .hero-form { padding: 22px; }
  
}


/* ============== HONESTY / DISCLAIMER STRIP ============== */
.honesty {
  padding: 60px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.honesty-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.honesty-mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  flex-shrink: 0;
}
.honesty h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.honesty h2 em { color: var(--coral); font-style: italic; font-family: var(--font-display); font-weight: 600; }
.honesty p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin: 0;
  max-width: 680px;
  line-height: 1.55;
}
.honesty .btn { white-space: nowrap; }
.hero-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin: 0 0 28px;
  background: rgba(255,210,63,.18);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  color: var(--ink-2);
  max-width: 540px;
  line-height: 1.5;
}
.hero-note strong { color: var(--ink); }

/* ============== INLINE CTA ============== */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 24px 28px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  flex-wrap: wrap;
}
.inline-cta p {
  margin: 0;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.inline-cta p strong { color: var(--coral); }
.inline-cta-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--coral);
}
.inline-cta-dark p { color: #fff; }
.inline-cta-dark p strong { color: var(--gold); }

@media (max-width: 720px) {
  .honesty-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .honesty-mark { margin: 0 auto; }
  .inline-cta { flex-direction: column; text-align: center; padding: 22px; }
}

/* Honeypot anti-spam: campo escondido que só bots preenchem (não usar display:none — alguns bots ignoram) */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
