/* ============================================================
   UBIRAJARA RAMOS JUNIOR — Advocacia | Cidadania Portuguesa
   Landing Page | Stylesheet
   Vflow Marketing © 2026
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* === VARIABLES === */
:root {
  /* Paleta sóbria advocatícia: navy profundo + dourado */
  --navy-950: #08122A;
  --navy-900: #0C1838;
  --navy-800: #112247;
  --navy-700: #1A3068;
  --navy-100: #E6EAF2;
  --navy-50:  #F4F6FA;

  --gold-800: #6F5418;
  --gold-700: #8A6A1C;
  --gold-600: #A88334;
  --gold-500: #C8A14A;
  --gold-400: #D9B975;
  --gold-100: #F4ECD4;
  --gold-50:  #FBF6E7;

  --brand:       #0C1838;
  --brand-deep:  #08122A;
  --brand-accent:#C8A14A;

  --cta:         #0C1838;
  --cta-hover:   #1A3068;

  --pt-green:  #006D3C;
  --pt-red:    #B22234;

  --text-900:   #0B1220;
  --text-700:   #1E293B;
  --text-500:   #475569;
  --text-400:   #64748B;
  --text-300:   #94A3B8;
  --text-white: #FFFFFF;

  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-cream: #FBF7EF;
  --bg-navy:  #08122A;

  --border:        #E5E7EB;
  --border-soft:   #EEF1F4;
  --border-gold:   rgba(200,161,74,.35);

  --shadow-sm:  0 1px 3px rgba(8,18,42,.06);
  --shadow-md:  0 6px 24px rgba(8,18,42,.10);
  --shadow-lg:  0 18px 48px rgba(8,18,42,.14);
  --shadow-xl:  0 32px 72px rgba(8,18,42,.18);
  --shadow-brand: 0 12px 36px rgba(12,24,56,.28);
  --shadow-gold:  0 12px 32px rgba(200,161,74,.32);

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;
  --r-xl:  22px;
  --r-full: 9999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast:  .15s;
  --t-base:  .3s;
  --t-slow:  .55s;

  --max-w: 1240px;
  --max-w-narrow: 980px;
  --section-py: 76px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-700);
  line-height: 1.75;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-base) var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: var(--text-900);
  font-weight: 700;
  letter-spacing: -.015em;
}

/* Tratamento especial do <em> dentro de títulos — vira display serif itálico em dourado */
h1 em, h2 em, h3 em {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-600);
  letter-spacing: 0;
  font-size: 1.04em;
}

::selection { background: var(--gold-500); color: var(--navy-950); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--section-py) 0; position: relative; }
.section--light { background: var(--bg-light); }
.section--cream {
  background: var(--bg-cream);
  background-image:
    radial-gradient(ellipse at top, rgba(200,161,74,.08), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(12,24,56,.04), transparent 50%);
}
.section--navy  {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: rgba(255,255,255,.86);
  overflow: hidden;
}
.section--navy h2, .section--navy h3 { color: #fff; }

/* === SECTION HEAD === */
.section-head {
  max-width: 780px;
  margin: 0 auto 36px;
}
.section-kicker {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-600);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.section--navy .section-kicker { color: var(--gold-400); }

.section-flourish {
  display: block;
  margin: 16px auto 24px;
  color: var(--gold-600);
  opacity: .85;
}
.section--navy .section-flourish { color: var(--gold-500); }

/* === TAG === */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-50);
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.tag--white {
  color: var(--gold-400);
  background: rgba(200,161,74,.08);
  border-color: rgba(200,161,74,.32);
}
.tag::before, .tag::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

/* === TYPOGRAPHY === */
.section-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.section--navy .section-title { color: #fff; }
.section-sub {
  font-size: 17px;
  color: var(--text-500);
  max-width: 680px;
  line-height: 1.8;
}
.section--navy .section-sub { color: rgba(255,255,255,.72); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .tag, .text-center .section-flourish, .text-center .section-kicker { margin-left: auto; margin-right: auto; }

/* Drop cap (Capítulo III - trust) */
.drop-cap {
  float: left;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 60px;
  line-height: .9;
  padding: 6px 14px 0 0;
  color: var(--gold-600);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: var(--r-sm);
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(12,24,56,.36);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
  color: var(--navy-950);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
  border-color: var(--gold-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(200,161,74,.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}
.btn-lg { padding: 22px 44px; font-size: 14px; }
.btn-full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all var(--t-base) var(--ease);
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(8,18,42,.4) 0%, transparent 100%);
}
.site-header.scrolled {
  background: rgba(8,18,42,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(200,161,74,.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo-img {
  height: 48px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.header-logo small {
  display: none;
  font-weight: 600;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 24px;
  border: 1.5px solid var(--gold-500);
  border-radius: var(--r-sm);
  transition: all var(--t-base) var(--ease);
  background: rgba(200,161,74,.05);
}
.header-cta i { font-size: 11px; color: var(--gold-500); transition: transform var(--t-base) var(--ease); }
.header-cta:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}
.header-cta:hover i { color: var(--navy-950); transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
  z-index: 0;
  filter: grayscale(.4) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(200,161,74,.16), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(26,48,104,.4), transparent 55%),
    linear-gradient(180deg, rgba(8,18,42,.5) 0%, rgba(8,18,42,.92) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .08;
  background-image:
    linear-gradient(rgba(200,161,74,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,161,74,.25) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 880px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--gold-500);
}
.hero-flourish { color: var(--gold-500); }

.hero-flag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: -.025em;
  max-width: 920px;
}
.hero h1 em {
  display: inline;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-400);
  font-size: 1.02em;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

/* Hero seals (selos no rodapé do hero) */
.hero-seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(200,161,74,.22);
}
.seal-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.seal-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 18px;
  flex-shrink: 0;
}
.seal-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.seal-text span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-400);
  margin-top: 2px;
}
.seal-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(200,161,74,.4), transparent);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .7;
  transition: opacity var(--t-base) var(--ease);
}
.hero-scroll:hover { opacity: 1; }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: #fff;
  animation: scrollDown 2s var(--ease) infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-12px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: #fff;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-cell {
  padding: 12px 24px;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 4.8vw, 60px);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.stat-num .suffix { color: var(--gold-600); font-weight: 500; }
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.stat-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-500);
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-item {
  position: relative;
  padding: 36px 30px 32px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  transition: all var(--t-base) var(--ease-out);
  overflow: hidden;
}
.problem-item::before {
  content: attr(data-num);
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold-500);
  opacity: .35;
  font-style: italic;
  line-height: 1;
}
.problem-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
}
.problem-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,161,74,.4);
}
.problem-item:hover::after { transform: scaleX(1); }
.problem-item:hover::before { opacity: .7; }
.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--navy-50), #fff);
  border: 1px solid var(--navy-100);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 22px;
}
.problem-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.problem-text span {
  font-size: 14.5px;
  color: var(--text-500);
  line-height: 1.7;
}

/* ============================================================
   ELIGIBILITY
   ============================================================ */
.elig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.elig-grid--three { grid-template-columns: repeat(3, 1fr); }

.elig-card {
  position: relative;
  padding: 44px 36px 38px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}
.elig-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
}
.elig-watermark {
  position: absolute;
  bottom: -28px;
  right: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 160px;
  font-weight: 600;
  color: var(--gold-500);
  opacity: .07;
  line-height: 1;
  pointer-events: none;
}
.elig-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(200,161,74,.4);
}
.elig-card:hover .elig-watermark { opacity: .12; }
.elig-body { position: relative; z-index: 1; }
.elig-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.elig-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-900);
  font-weight: 700;
}
.elig-body p {
  font-size: 15px;
  color: var(--text-500);
  line-height: 1.7;
}

/* Filtro eliminatório */
.elig-filter {
  margin-top: 44px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 32px;
  background: #fff;
  border: 1px dashed rgba(12,24,56,.18);
  border-radius: var(--r-md);
  position: relative;
}
.elig-filter::before {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 3px;
  background: var(--navy-800);
  border-radius: 3px 0 0 3px;
}
.elig-filter-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-500);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.elig-filter-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text-900);
  margin-bottom: 6px;
}
.elig-filter-text span {
  font-size: 14.5px;
  color: var(--text-500);
  line-height: 1.7;
}

/* ============================================================
   TRUST / TRANSPARÊNCIA
   ============================================================ */
.trust-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 70px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-head { position: sticky; top: 120px; }
.trust-head .section-title { margin-bottom: 0; }
.trust-head .section-flourish { margin: 22px 0 0; }
.trust-content p {
  color: var(--text-500);
  margin-bottom: 20px;
  font-size: 16.5px;
  line-height: 1.85;
}
.trust-content p strong { color: var(--text-900); font-weight: 600; }
.trust-lead { font-size: 18px !important; color: var(--text-700) !important; }

.trust-bullets {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-bullet {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 15.5px;
  color: var(--text-700);
  line-height: 1.7;
}
.bullet-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--gold-700);
  background: var(--gold-50);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  margin-top: 1px;
}
.trust-bullet strong { color: var(--text-900); font-weight: 600; }

/* ============================================================
   METODOLOGIA / PROCESS
   ============================================================ */
.navy-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(200,161,74,.13), transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(26,48,104,.5), transparent 50%);
  z-index: 0;
}
.navy-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,161,74,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,161,74,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .4;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.section--navy .container { position: relative; z-index: 1; }
.form-section .container { position: relative; z-index: 1; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold-500) 0 6px, transparent 6px 14px);
  opacity: .35;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.process-num {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--gold-500);
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(8,18,42,.6), 0 10px 30px rgba(0,0,0,.4);
}
.process-num::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: .5px solid rgba(200,161,74,.4);
  border-radius: 50%;
}
.process-step h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
}
.process-step p {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ============================================================
   AUTHORITY
   ============================================================ */
.authority-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: center;
}
.authority-photo {
  position: relative;
  max-width: 460px;
}
.photo-frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy-950);
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,18,42,.85));
  z-index: 1;
}
.photo-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}
.photo-frame:hover img { transform: scale(1.03); }

/* Cantos ornamentais dourados */
.photo-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 2;
  color: var(--gold-500);
}
.photo-corner--tl { top: 14px; left: 14px; }
.photo-corner--tr { top: 14px; right: 14px; transform: rotate(90deg); }
.photo-corner--bl { bottom: 14px; left: 14px; transform: rotate(-90deg); }
.photo-corner--br { bottom: 14px; right: 14px; transform: rotate(180deg); }

.authority-oab {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  background: rgba(8,18,42,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200,161,74,.4);
  padding: 16px 20px;
  border-radius: var(--r-sm);
}
.authority-oab strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}
.authority-oab span {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .04em;
}

.authority-content .section-kicker { margin-bottom: 8px; }
.authority-content .tag { margin-bottom: 22px; }
.authority-content h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.authority-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-700);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.authority-flourish {
  display: block;
  color: var(--gold-600);
  margin: 0 0 28px;
  opacity: .8;
}
.authority-content p {
  color: var(--text-500);
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.85;
}
.authority-content p strong { color: var(--text-900); font-weight: 600; }

.authority-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 36px;
}
.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.cred-badge i { color: var(--gold-600); font-size: 13px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 880px;
  margin: 40px auto 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
.faq-item.open {
  border-color: rgba(200,161,74,.5);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 32px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-900);
}
.faq-num {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--gold-600);
  min-width: 36px;
}
.faq-text { flex: 1; line-height: 1.5; }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--gold-700);
  background: var(--gold-50);
  border-radius: 50%;
  transition: all var(--t-base) var(--ease);
  font-size: 13px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-answer-inner {
  padding: 0 32px 26px 86px;
  color: var(--text-500);
  font-size: 15px;
  line-height: 1.8;
}
.faq-answer-inner strong { color: var(--text-900); font-weight: 600; }

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-section {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  padding: var(--section-py) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.form-info .section-kicker { display: block; margin-bottom: 10px; }
.form-info .tag { margin-bottom: 22px; }
.form-info h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -.02em;
}
.form-info > p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.form-info > p strong { color: #fff; }

.form-bullets { display: grid; gap: 16px; margin-bottom: 40px; }
.form-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.6;
}
.form-bullet .bullet-mark {
  background: rgba(200,161,74,.12);
  border-color: rgba(200,161,74,.3);
  color: var(--gold-400);
  width: 34px;
  height: 34px;
  font-size: 16px;
}

.form-quote {
  margin-top: 36px;
  padding: 26px 30px 26px 36px;
  border-left: 3px solid var(--gold-500);
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  position: relative;
}
.quote-mark {
  position: absolute;
  top: -2px;
  left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  line-height: 1;
  color: var(--gold-500);
  opacity: .55;
}

/* Form card */
.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px 44px 40px;
  box-shadow: var(--shadow-xl);
  color: var(--text-700);
  position: relative;
  overflow: hidden;
}
.form-card-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
}
.form-card-head {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 6px;
  color: var(--navy-900);
  letter-spacing: -.01em;
}
.form-card .form-sub {
  font-size: 13px;
  color: var(--text-500);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-group label span { color: var(--pt-red); }
.form-control, .form-select {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--text-900);
  transition: all var(--t-fast) var(--ease);
  font-family: 'Inter', sans-serif;
}
.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,161,74,.16);
}
.form-control.error, .form-select.error {
  border-color: var(--pt-red);
  background: #FEF2F2;
}
.form-error {
  display: none;
  font-size: 12.5px;
  color: var(--pt-red);
  margin-top: 6px;
}
.form-error.show { display: block; }

/* intl-tel-input overrides */
.iti { width: 100%; }
.iti__tel-input {
  width: 100%;
  padding-left: 90px !important;
}
.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
  color: var(--text-900);
  font-family: 'Inter', sans-serif;
}
.iti__dropdown-content {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.iti__search-input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.iti__country.iti__highlight { background: var(--cream-100); }

/* Campo mensagem / textarea */
textarea.form-control { resize: vertical; min-height: 90px; }
.form-optional {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-500);
  margin-left: 4px;
  letter-spacing: .01em;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A88334' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 20px 24px;
  border-radius: var(--r-sm);
  margin-top: 12px;
  transition: all var(--t-base) var(--ease);
  border: 1.5px solid var(--navy-900);
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.form-submit span, .form-submit i { position: relative; z-index: 1; }
.form-submit i { transition: transform var(--t-base) var(--ease); }
.form-submit:hover {
  border-color: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.form-submit:hover::before { opacity: 1; }
.form-submit:hover i { transform: translateX(4px); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-privacy {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--text-500);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-privacy i { color: var(--gold-600); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
  position: relative;
}
.footer-flourish {
  text-align: center;
  padding-bottom: 36px;
  opacity: .8;
}
.footer-flourish svg { margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding: 20px 0 60px;
  border-top: 1px solid rgba(200,161,74,.16);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo-img {
  height: 54px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: .92;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
  max-width: 360px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 22px;
}
.footer-links { display: grid; gap: 14px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  transition: all var(--t-fast) var(--ease);
}
.footer-links a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}
.footer-links a i {
  width: 16px;
  font-size: 12px;
  color: var(--gold-500);
}

.footer-oab-notice {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 26px 0;
}
.footer-oab-notice p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: .015em;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: var(--gold-500); }
.footer-bottom a:hover { color: #fff; }
.pulse-heart {
  display: inline-block;
  color: var(--pt-red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.18); }
}

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .08s; }
.fade-up.delay-2 { transition-delay: .16s; }
.fade-up.delay-3 { transition-delay: .24s; }
.fade-up.delay-4 { transition-delay: .32s; }
.fade-up.delay-5 { transition-delay: .40s; }

/* ============================================================
   FLAG ICONS (bandeiras Brasil / Portugal)
   ============================================================ */
.flag-icon {
  display: inline-block;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.08),
    0 1px 3px rgba(0,0,0,.18);
  vertical-align: middle;
  flex-shrink: 0;
  background: #fff;
}
.flag-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.flag-icon--xs { width: 16px; height: 12px; }
.flag-icon--lg { width: 30px; height: 22px; }
.flag-icon--xl { width: 44px; height: 32px; border-radius: 3px; }
/* Espaçamento confortável quando aparece inline em texto fluindo */
.flag-icon + .flag-text, .flag-text + .flag-icon { margin-left: 2px; }
p .flag-icon, span .flag-icon { margin: 0 4px 0 2px; }

/* Selos do hero com bandeira no lugar do ícone */
.seal-mark--flag {
  background: none !important;
  display: grid;
  place-items: center;
}

/* Inscrição OAB sobre a foto (badge com bandeiras) */
.oab-flags {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}
.oab-flag-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
}
.oab-flag-sep {
  height: 1px;
  width: 36px;
  background: rgba(200,161,74,.4);
}

/* Bandeira dentro das cred-badges (badges sob a bio) */
.cred-badge .flag-icon {
  width: 20px;
  height: 14px;
}

/* ============================================================
   ============================================================
   INDEX-2 — COMPONENTES ESPECÍFICOS
   ============================================================
   ============================================================ */

/* === HERO ALTERNATIVO (foto dominante) === */
.hero--photo { padding: 130px 0 90px; }
.hero--photo .hero-bg { opacity: .35; filter: grayscale(.15) contrast(1.05) brightness(.7); }
.hero-bg--lisbon { background-position: center 60%; }
.hero-overlay--strong {
  background:
    radial-gradient(ellipse at center top, rgba(200,161,74,.18), transparent 50%),
    linear-gradient(180deg, rgba(8,18,42,.6) 0%, rgba(8,18,42,.55) 50%, rgba(8,18,42,.95) 100%);
}
.hero-content--center {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-content--center .hero-eyebrow { justify-content: center; }
.hero-content--center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-actions--center { justify-content: center; }

/* Hero quickbar — strip horizontal de destaque */
.hero-quickbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
  padding: 22px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,161,74,.25);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.qb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.qb-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--gold-400);
  letter-spacing: -.01em;
}
.qb-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
  max-width: 130px;
}
.qb-sep {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(200,161,74,.4), transparent);
}

/* === STORY INTRO === */
.story-intro { padding: var(--section-py) 0; }
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.story-image {
  position: relative;
  max-width: 460px;
}
.story-image .photo-frame img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.story-content .section-kicker { margin-bottom: 8px; }
.story-content h2 { margin-bottom: 8px; }
.story-content .section-flourish { margin: 18px 0 28px; color: var(--gold-600); opacity: .8; }
.story-lead {
  font-size: 18px !important;
  color: var(--text-700) !important;
  line-height: 1.85;
  margin-bottom: 20px;
}
.story-lead strong { color: var(--navy-900); }
.story-content > p {
  font-size: 16px;
  color: var(--text-500);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* === BENEFITS GRID === */
.bens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.bens-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.bens-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,161,74,.4);
}
.bens-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-950);
}
.bens-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  filter: contrast(1.05) saturate(.92);
}
.bens-card:hover .bens-image img { transform: scale(1.06); }
.bens-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,18,42,.55));
}
.bens-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: var(--gold-500);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.bens-body {
  padding: 28px 28px 30px;
  flex: 1;
}
.bens-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 12px;
  line-height: 1.35;
}
.bens-body p {
  font-size: 14.5px;
  color: var(--text-500);
  line-height: 1.7;
}
.bens-body p strong { color: var(--text-900); font-weight: 600; }

/* Extra benefits row (compact) */
.bens-extra {
  background: linear-gradient(135deg, #fff, var(--bg-cream));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin-top: 16px;
}
.bens-extra-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 22px;
  text-align: center;
}
.bens-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
}
.bens-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14.5px;
  color: var(--text-500);
  line-height: 1.65;
}
.bens-extra-item i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-50);
  color: var(--gold-700);
  font-size: 14px;
  border: 1px solid var(--border-gold);
}
.bens-extra-item strong { color: var(--navy-900); font-weight: 600; }

/* === NETOS SECTION === */
.netos-section { padding: var(--section-py) 0; }
.netos-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.netos-image {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.netos-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05) brightness(.95);
}
.netos-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,18,42,.5));
  pointer-events: none;
}
.netos-image-deco {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200,161,74,.4);
  border-radius: var(--r-md);
  pointer-events: none;
  z-index: 2;
}
.netos-content h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.netos-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: var(--gold-500);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 26px;
}
.netos-badge i { font-size: 12px; }
.netos-content > p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.netos-content > p strong { color: #fff; }
.netos-list {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}
.netos-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}
.netos-list i {
  flex-shrink: 0;
  color: var(--gold-500);
  font-size: 18px;
  margin-top: 3px;
}
.netos-list strong { color: #fff; font-weight: 600; }

/* === WARNING SECTION === */
.warning-section { padding: 56px 0; background: var(--bg-light); }
.warning-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 52px;
  background: #fff;
  border-radius: var(--r-lg);
  border-left: 4px solid var(--pt-red);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.warning-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(178,34,52,.06), transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
}
.warning-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: #FEF2F2;
  color: var(--pt-red);
  border-radius: 50%;
  font-size: 28px;
  border: 1px solid rgba(178,34,52,.2);
  flex-shrink: 0;
}
.warning-body { position: relative; }
.warning-kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--pt-red);
  margin-bottom: 12px;
}
.warning-body h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--text-900);
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.warning-body h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--pt-red);
}
.warning-body p {
  font-size: 15.5px;
  color: var(--text-500);
  line-height: 1.85;
  margin-bottom: 14px;
}
.warning-body p strong { color: var(--text-900); font-weight: 600; }
.warning-foot {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.warning-foot i { color: var(--gold-600); font-size: 14px; }

/* === PROCESS variante cream === */
.process-grid--cream::before {
  background: repeating-linear-gradient(90deg, var(--gold-600) 0 6px, transparent 6px 14px);
  opacity: .35;
}
.process-num--light {
  background: linear-gradient(135deg, #fff, var(--bg-cream));
  color: var(--navy-900);
  border: 1.5px solid var(--gold-500);
  box-shadow: 0 0 0 6px rgba(200,161,74,.08), 0 8px 24px rgba(200,161,74,.18);
}
.process-num--light::before { border-color: rgba(200,161,74,.55); }
.section--cream .process-step h3 { color: var(--navy-900); }
.section--cream .process-step p { color: var(--text-500); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-py: 64px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .elig-grid--three { grid-template-columns: 1fr 1fr; }
  .trust-wrap { grid-template-columns: 1fr; gap: 40px; }
  .trust-head { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
  .process-grid::before { display: none; }
  .authority-wrap { grid-template-columns: 1fr; gap: 56px; }
  .authority-photo { margin: 0 auto; }
  .form-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-cell + .stat-cell::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Index-2 */
  .story-wrap { grid-template-columns: 1fr; gap: 48px; }
  .story-image { margin: 0 auto; }
  .bens-grid { grid-template-columns: repeat(2, 1fr); }
  .netos-wrap { grid-template-columns: 1fr; gap: 48px; }
  .netos-image { max-width: 460px; margin: 0 auto; }
  .bens-extra-grid { grid-template-columns: 1fr; }
  .warning-box { padding: 36px; gap: 28px; }
  .hero-quickbar { gap: 24px; padding: 22px 24px; }
}

@media (max-width: 720px) {
  :root { --section-py: 56px; }
  .container { padding: 0 20px; }
  .header-logo-img { height: 38px; }
  .footer-logo-img { height: 44px; }
  .header-cta { padding: 11px 16px; font-size: 10px; letter-spacing: .14em; }
  .header-cta i { display: none; }

  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 34px; line-height: 1.12; }
  .hero-sub { font-size: 15.5px; }
  .hero-actions .btn { width: 100%; }
  .hero-seals { gap: 18px; }
  .seal-divider { display: none; }
  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stat-num { font-size: 42px; }

  .problem-grid, .elig-grid--three { grid-template-columns: 1fr; }
  .elig-card { padding: 32px 26px 28px; }
  .elig-watermark { font-size: 130px; }

  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-num { width: 76px; height: 76px; font-size: 28px; }

  .authority-content h2 { font-size: 26px; }
  .authority-credentials { gap: 8px; }
  .cred-badge { font-size: 10.5px; padding: 8px 12px; }

  .faq-question { padding: 20px 22px; font-size: 15px; gap: 14px; }
  .faq-num { font-size: 18px; min-width: 28px; }
  .faq-answer-inner { padding: 0 22px 22px 64px; }

  .form-card { padding: 32px 24px 28px; }
  .form-card h3 { font-size: 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-oab-notice p { font-size: 12.5px; }

  .drop-cap { font-size: 50px; padding-right: 10px; }

  /* Index-2 mobile */
  .hero--photo { padding: 110px 0 70px; }
  .hero-quickbar {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }
  .qb-sep {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,161,74,.4), transparent);
  }
  .qb-item { flex-direction: column; text-align: center; gap: 8px; }
  .qb-num { font-size: 38px; }
  .qb-text { max-width: none; }

  .bens-grid { grid-template-columns: 1fr; gap: 22px; }
  .bens-body { padding: 22px 22px 24px; }
  .bens-extra { padding: 28px 22px; }

  .netos-content h2 { font-size: 26px; }
  .netos-content > p { font-size: 15.5px; }

  .warning-box {
    grid-template-columns: 1fr;
    padding: 32px 26px;
    gap: 22px;
    text-align: left;
  }
  .warning-icon { margin: 0; }
  .warning-body h2 { font-size: 22px; }
}
