/* ============================================================
   Fernando Oliveira Advocacia — style.css v3
   Design: Paleta Original — Navy + Dourado — Moderno e Clean
   Mobile-first | Responsivo | Acessível
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --color-navy:          #0E1C3A;
  --color-navy-mid:      #162548;
  --color-navy-light:    #1D3060;
  --color-gold:          #B8952A;
  --color-gold-light:    #D4AC45;
  --color-gold-pale:     rgba(184,149,42,0.10);
  --color-gold-border:   rgba(184,149,42,0.25);

  /* UI Colors */
  --color-bg:            #F7F8FA;
  --color-section:       #F0F2F7;
  --color-white:         #FFFFFF;
  --color-text:          #111827;
  --color-muted:         #5A6A85;
  --color-border:        #E0E5EF;
  --color-border-light:  #EEF1F7;

  /* WhatsApp */
  --color-whatsapp:      #22C55E;
  --color-whatsapp-dark: #16A34A;
  --color-whatsapp-glow: rgba(34,197,94,0.22);

  /* Typography */
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  /* Radius */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(14,28,58,0.05);
  --shadow-sm:    0 2px 8px rgba(14,28,58,0.07), 0 1px 3px rgba(14,28,58,0.05);
  --shadow-md:    0 4px 20px rgba(14,28,58,0.10), 0 1px 4px rgba(14,28,58,0.06);
  --shadow-lg:    0 8px 36px rgba(14,28,58,0.13), 0 2px 8px rgba(14,28,58,0.07);
  --shadow-gold:  0 4px 20px rgba(184,149,42,0.18);

  /* Layout */
  --max-width:    1140px;
  --section-gap:  88px;
  --section-gap-sm: 56px;

  --transition:      0.2s ease;
  --transition-slow: 0.35s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 0; }
.text-muted { color: var(--color-muted); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}
section { padding-block: var(--section-gap); }
section.alt { background: var(--color-section); }
section.white { background: var(--color-white); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold-border);
  border-radius: 32px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* Gold primary button */
.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(184,149,42,0.28);
}

/* Navy outline */
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-navy);
  background: rgba(14,28,58,0.04);
}

/* White outline (on dark bg) */
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Gold outline (on white bg) */
.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold-border);
}
.btn-outline-gold:hover {
  background: var(--color-gold-pale);
  border-color: var(--color-gold);
}

/* Navy solid */
.btn-outline-dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn-outline-dark:hover {
  background: var(--color-navy-mid);
  transform: translateY(-1px);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-whatsapp-glow);
}

.btn-lg { padding: 16px 34px; font-size: 0.98rem; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-slow);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(14,28,58,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo with image */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* Logo tem fundo preto, vamos usar filter para adaptar */
  filter: brightness(0) invert(0);
  /* Alternativa: mostrar com fundo escuro no header? usamos a versão com background */
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 1px;
}
.header-logo .logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.header-logo .logo-sub {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--color-navy); }
.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  z-index: 99;
  padding: 28px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: -0.01em;
}
.mobile-nav a:first-child { border-top: 1px solid var(--color-border); }
.mobile-nav .btn { margin-top: 20px; }

/* Simple header (LPs) */
.header-simple .header-inner { height: 60px; }
.header-simple .nav-links { display: none; }

/* --- Hero (Home) --- */
.hero {
  padding-top: calc(68px + 80px);
  padding-bottom: 96px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 30%, rgba(184,149,42,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 70%, rgba(14,28,58,0.03) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold accent line top */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 40%, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold-border);
  border-radius: 32px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-gold 2.5s ease infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 { color: var(--color-navy); margin-bottom: 20px; max-width: 660px; }

/* Gold underline on key word */
.hero h1 .gold { color: var(--color-gold); }

.hero-subtitle {
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 580px;
}
.hero-text {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  padding: 14px 20px;
  background: var(--color-section);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

/* Trust chips */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 5px 13px;
  box-shadow: var(--shadow-xs);
}
.hero-trust-chip svg { width: 12px; height: 12px; color: var(--color-whatsapp); flex-shrink: 0; }

.hero-actions { display: flex; flex-direction: column; gap: 10px; }

/* Hero Right Card */
.hero-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Gold top bar */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light) 60%, transparent);
}

/* Photo area */
.hero-card-photo {
  position: relative;
  background: var(--color-navy);
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-card-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-white) 0%, transparent 100%);
}

/* Card info area */
.hero-card-info {
  padding: 20px 28px 28px;
}
.hero-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero-card-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 18px;
}
.hero-badges { display: flex; flex-direction: column; gap: 9px; }
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 500;
}
.hero-badge-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-gold-border);
}
.hero-badge-check svg { width: 10px; height: 10px; color: var(--color-gold); }

/* --- Cards --- */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--color-gold-border); }
.card-icon {
  width: 46px; height: 46px;
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--color-gold);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; font-size: 1.05rem; letter-spacing: -0.01em; }
.card p { color: var(--color-muted); font-size: 0.9rem; line-height: 1.65; }

/* Area Cards */
.area-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--color-gold-border); }
.area-card-icon {
  width: 48px; height: 48px;
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--color-gold);
}
.area-card-icon svg { width: 24px; height: 24px; }
.area-card h3 { margin-bottom: 10px; font-size: 1.03rem; letter-spacing: -0.01em; }
.area-card p { color: var(--color-muted); font-size: 0.89rem; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.area-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  transition: gap var(--transition);
  letter-spacing: -0.01em;
}
.area-card .btn-link svg { width: 14px; height: 14px; }
.area-card:hover .btn-link { gap: 10px; }

/* --- Quem sou eu (About section) --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
.about-photo-col { position: relative; }
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  margin-inline: auto;
}
.about-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* Gold accent frame */
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--color-gold), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
/* Gold badge on photo */
.about-photo-badge {
  position: absolute;
  bottom: 20px;
  right: -12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-navy);
  z-index: 2;
  white-space: nowrap;
}
.about-photo-badge span {
  display: block;
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-content {}
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--color-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.about-content p:last-of-type { margin-bottom: 28px; }

/* --- Steps --- */
.steps-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-list::before {
  content: '';
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold) 0%, rgba(184,149,42,0.08) 100%);
}
.step-item { display: flex; gap: 22px; padding-bottom: 32px; position: relative; }
.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-gold);
}
.step-item:last-child { padding-bottom: 0; }
.step-content h4 { margin-bottom: 5px; color: var(--color-navy); letter-spacing: -0.01em; }
.step-content p { color: var(--color-muted); font-size: 0.91rem; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold); }
.faq-icon {
  width: 26px; height: 26px;
  background: var(--color-section);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 13px; height: 13px; color: var(--color-navy); }
.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { color: var(--color-navy); }
.faq-answer { display: none; padding-bottom: 20px; color: var(--color-muted); font-size: 0.92rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* --- CTA Blocks --- */
.cta-block {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(184,149,42,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 20%, rgba(184,149,42,0.06) 0%, transparent 65%);
  pointer-events: none;
}
/* Gold line top */
.cta-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light) 50%, transparent);
}
.cta-block h2, .cta-block h3 { color: var(--color-white); margin-bottom: 12px; position: relative; }
.cta-block p {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
}
.cta-block .btn { position: relative; }
.cta-section { padding-block: var(--section-gap); }

/* --- Notice --- */
.notice {
  background: rgba(184,149,42,0.05);
  border-left: 3px solid var(--color-gold-border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.84rem;
  color: var(--color-muted);
  font-style: italic;
  line-height: 1.65;
  margin-top: 24px;
}
.notice-section {
  background: var(--color-section);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.87rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--color-navy);
  padding: 16px 0;
}
.trust-items { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
}
.trust-item svg { width: 15px; height: 15px; color: var(--color-gold); }

/* --- Social Proof --- */
.proof-list { display: flex; flex-direction: column; gap: 16px; }
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.proof-icon {
  width: 38px; height: 38px;
  background: var(--color-gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-gold-border);
}
.proof-icon svg { width: 18px; height: 18px; color: var(--color-gold); }
.proof-item h4 { font-size: 0.93rem; margin-bottom: 3px; letter-spacing: -0.01em; }
.proof-item p { font-size: 0.86rem; color: var(--color-muted); }

/* --- Check Lists --- */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--color-text);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%22C55E'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2322C55E'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Info Columns --- */
.info-cols { display: grid; grid-template-columns: 1fr; gap: 32px; }
.info-col h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
  letter-spacing: -0.01em;
}

/* --- Form --- */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.form-subtitle { font-size: 0.88rem; color: var(--color-muted); margin-bottom: 26px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.form-label .required { color: var(--color-gold); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,149,42,0.12);
}
.form-control.error { border-color: #DC2626; }
textarea.form-control { min-height: 96px; resize: vertical; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235A6A85'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-error-msg { font-size: 0.78rem; color: #DC2626; margin-top: 4px; display: none; }
.form-group.error .form-error-msg { display: block; }
.form-footer { margin-top: 8px; font-size: 0.77rem; color: var(--color-muted); line-height: 1.6; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; cursor: pointer; }
.radio-label input[type="radio"] { accent-color: var(--color-gold); width: 16px; height: 16px; }

/* --- Hero LP --- */
.hero-lp {
  padding-top: calc(60px + 48px);
  padding-bottom: 56px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero-lp::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 80% at 85% 30%, rgba(184,149,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-lp::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light) 50%, transparent);
}
.hero-lp h1 { color: var(--color-white); margin-bottom: 16px; }
.hero-lp .hero-subtitle { color: rgba(255,255,255,0.72); margin-bottom: 28px; max-width: 640px; }
.hero-lp .notice {
  background: rgba(184,149,42,0.06);
  border-left-color: rgba(184,149,42,0.3);
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* --- Footer --- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.62);
  padding-top: 56px;
  padding-bottom: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo in footer */
.footer-brand-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  display: block;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.footer-brand .logo-sub {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.7; color: rgba(255,255,255,0.42); max-width: 300px; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-contact a:hover { color: var(--color-gold); }
.footer-contact svg { width: 15px; height: 15px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 16px; opacity: 0.8; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.48); transition: color var(--transition); }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom { padding: 20px 0; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.footer-notice {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

/* --- WhatsApp Float --- */
.whatsapp-float { position: fixed; bottom: 24px; right: 20px; z-index: 90; display: none; }
.whatsapp-float a {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 4px 20px var(--color-whatsapp-glow);
  color: white;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(34,197,94,0.4); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* --- Obrigado --- */
.obrigado-section { min-height: calc(100vh - 60px); display: flex; align-items: center; padding-top: calc(60px + 48px); padding-bottom: 80px; }
.obrigado-card {
  max-width: 540px; margin-inline: auto; text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.obrigado-icon {
  width: 72px; height: 72px;
  background: var(--color-gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--color-gold-border);
}
.obrigado-icon svg { width: 36px; height: 36px; color: var(--color-gold); }

/* --- Política --- */
.policy-content { max-width: 760px; margin-inline: auto; }
.policy-content h2 { font-size: 1.25rem; margin-bottom: 12px; margin-top: 40px; letter-spacing: -0.02em; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; color: var(--color-text); }
.policy-content ul { margin: 14px 0; }
.policy-content ul li { font-size: 0.95rem; color: var(--color-text); padding: 4px 0 4px 20px; position: relative; line-height: 1.65; }
.policy-content ul li::before { content: '•'; position: absolute; left: 4px; color: var(--color-gold); }

/* --- Two-col LP layout --- */
.lp-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }

/* --- Responsive --- */
@media (min-width: 600px) {
  .trust-items { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 24px; }
  .hero-actions { flex-direction: row; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  .about-grid { grid-template-columns: 0.85fr 1fr; gap: 64px; }
  .info-cols { grid-template-columns: repeat(2, 1fr); }
  .lp-layout { grid-template-columns: 1fr 380px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .proof-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .whatsapp-float { display: block; }
  .about-photo-badge { right: -8px; }
}
@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 960px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .hamburger { display: none !important; }
  .header-nav { display: flex !important; }
  .mobile-nav { display: none !important; }
}
@media (max-width: 1023px) {
  .hamburger { display: flex; }
  .header-nav { display: none; }
  .header-cta { display: none; }
}
@media (max-width: 767px) {
  .whatsapp-float { display: block; }
  section { padding-block: var(--section-gap-sm); }
  .about-photo-badge { right: 12px; }
}

/* Areas grid */
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

/* Steps desktop */
@media (min-width: 768px) {
  .steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 52px; }
  .steps-list::before { display: none; }
}

/* Accessibility */
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 2px; }

/* Lazy loading */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* Utilities */
.divider { height: 1px; background: var(--color-border); margin-block: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }

/* Badge */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; }
.badge-primary { background: var(--color-gold-pale); color: var(--color-gold); border: 1px solid var(--color-gold-border); }
.badge-muted { background: var(--color-section); color: var(--color-muted); }
.badge-secondary { background: var(--color-gold-pale); color: var(--color-gold); }

/* Highlight with gold */
.highlight { position: relative; display: inline; }
.highlight::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 0; right: 0;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  opacity: 0.4;
}

/* Section label legacy */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
/* Correção específica do banner final de contato no mobile */
@media (max-width: 768px) {
  .contato-final {
    overflow-x: hidden;
  }

  .cta-contato-final {
    width: 100%;
    max-width: 100%;
    padding: 42px 22px;
    border-radius: 28px;
    overflow: hidden;
  }

  .cta-contato-final h2 {
    font-size: 2rem;
    line-height: 1.15;
    max-width: 100%;
  }

  .cta-contato-final p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .cta-contato-final .btn,
  .cta-contato-final .btn-lg,
  .cta-contato-final .btn-primary {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-contato-final .btn svg {
    flex-shrink: 0;
  }
}
