/* ══════════════════════════════════════════════════════════════
   CARDOSO ADVOGADOS — styles.css
   Premium Legal Landing Page — High-Conversion Design
   Fonts: Cormorant Garamond + DM Sans
   ══════════════════════════════════════════════════════════════ */

/* ─── 1. CUSTOM PROPERTIES ─── */
:root {
  --wine:         #7B1D1D;
  --wine-dark:    #521313;
  --wine-mid:     #6A1A1A;
  --wine-light:   #9B2D2D;
  --gold:         #C9A84C;
  --gold-dark:    #A8882E;
  --gold-light:   #DFC068;
  --gold-pale:    #F8F0D8;
  --cream:        #FBF9F6;
  --cream-dark:   #F2EDE4;
  --white:        #FFFFFF;
  --dark:         #0E0E0F;
  --dark-soft:    #1A1A1C;
  --dark-card:    #222224;
  --gray-dark:    #3A3A3C;
  --gray:         #6B6B70;
  --gray-mid:     #9A9A9E;
  --gray-light:   #E8E4DE;
  --gray-pale:    #F4F2EE;
  --green-wa:     #25D366;
  --green-wa-dk:  #128C7E;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-xs:   0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.13);
  --shadow-xl:   0 28px 72px rgba(0,0,0,0.17);
  --shadow-wine: 0 8px 32px rgba(123,29,29,0.28);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.35);
  --shadow-wa:   0 6px 28px rgba(37,211,102,0.42);

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.55, 0, 1, 0.45);
}

/* ─── 2. RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }
ul { list-style: none; }

/* ─── 3. TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { line-height: 1.78; }

/* ─── 4. LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── 5. SCROLL PROGRESS BAR ─── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ─── 6. SECTION HEADER SYSTEM ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before, .section-label.light::after { background: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--wine); }
.section-title.on-dark em { color: var(--gold-light); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 580px;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 28px;
}
.ornament.center { justify-content: center; margin-left: auto; margin-right: auto; }
.ornament-line { flex: 1; max-width: 56px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ornament-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ─── 7. BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.97rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 26px;
  min-height: 52px;
  transition: all 0.22s var(--ease-out);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-xl { font-size: 1.1rem; padding: 18px 36px; min-height: 60px; border-radius: 14px; }

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: var(--shadow-wa);
  animation: pulse-wa 2.8s ease-in-out infinite;
}
.btn-wa:hover { background: var(--green-wa-dk); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); animation: none; }

.btn-wine {
  background: var(--wine);
  color: var(--white);
  box-shadow: var(--shadow-wine);
}
.btn-wine:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(123,29,29,0.38); }

.btn-outline-gold {
  background: transparent;
  color: var(--wine);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.6); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.42); }
  50%       { box-shadow: 0 6px 44px rgba(37,211,102,0.68); }
}

/* ─── 8. BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-wine  { background: rgba(123,29,29,0.09); color: var(--wine); }
.badge-gold  { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.badge-white { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.badge-green { background: rgba(37,211,102,0.12); color: #14a04d; }

/* ─── 9. REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-up { transition-delay: 0s; }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ══════════════════════════════════════════════════════════════
   URGENCY BAR
   ══════════════════════════════════════════════════════════════ */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--wine-dark) 0%, var(--wine) 50%, var(--wine-dark) 100%);
  padding: 11px 20px;
  text-align: center;
}
.urgency-bar a {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.urgency-bar a:hover { text-decoration: underline; }
.urgency-bar .pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: dot-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.urgency-highlight { color: var(--gold-light); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 38px;
  z-index: 900;
  background: rgba(251,249,246,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--wine);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--wine);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}
.logo-text-wrap span {
  font-size: 0.68rem;
  color: var(--gray);
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--wine); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--cream);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.1) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
}
/* Decorative blob */
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(123,29,29,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 500px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,29,29,0.07);
  border: 1px solid rgba(123,29,29,0.12);
  color: var(--wine);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--dark);
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--wine); }
.hero-sub {
  font-size: 1.08rem;
  color: var(--gray-dark);
  line-height: 1.82;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 40px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}
.check-circle {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--wine), var(--wine-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.58rem;
  flex-shrink: 0;
}
.hero-cta-group { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* Photo Card */
.photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.photo-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: linear-gradient(160deg, #d8c8b8, #bca898);
}
.photo-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(82,19,19,0.92) 100%);
  padding: 24px 20px 20px;
}
.photo-card-overlay strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 2px;
}
.photo-card-overlay span { font-size: 0.78rem; color: var(--gold-light); }
/* Decorative corner accent */
.photo-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 64px; height: 64px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg) 0 0 0;
  z-index: 2;
}
.photo-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 64px; height: 64px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-xl) 0;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--wine);
  padding: 0;
  position: relative;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.05); }
.trust-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.trust-text strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-sans);
  line-height: 1.2;
}
.trust-text span { font-size: 0.73rem; color: rgba(255,255,255,0.78); }

/* ══════════════════════════════════════════════════════════════
   DOR / EMPATHY
   ══════════════════════════════════════════════════════════════ */
.section-dor {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-dor::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.dor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  border-bottom: 3px solid var(--wine);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.dor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.dor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dor-card:hover::before { opacity: 1; }
.dor-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(123,29,29,0.08), rgba(201,168,76,0.08));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.dor-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.dor-card p { font-size: 0.88rem; color: var(--gray-dark); line-height: 1.72; }
.dor-transition {
  text-align: center;
  margin-top: 52px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--wine);
}

/* ══════════════════════════════════════════════════════════════
   DIFERENCIAIS
   ══════════════════════════════════════════════════════════════ */
.section-diferenciais { background: var(--white); }
.diferencial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid rgba(201,168,76,0.14);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s, border-color 0.28s;
  overflow: hidden;
}
.diferencial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.diferencial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.diferencial-card:hover::after { transform: scaleX(1); }
.dif-icon {
  width: 54px; height: 54px;
  background: linear-gradient(140deg, var(--wine), var(--wine-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(123,29,29,0.22);
}
.diferencial-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.diferencial-card p { font-size: 0.86rem; color: var(--gray-dark); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--cream-dark);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 48px 0;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--gray-light);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-suffix { color: var(--gold); }
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS / COMO FUNCIONA
   ══════════════════════════════════════════════════════════════ */
.section-process {
  background: linear-gradient(160deg, var(--wine) 0%, var(--wine-dark) 100%);
  position: relative;
  overflow: hidden;
}
.section-process::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  border-radius: 50%;
}
.section-process::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  margin-top: 52px;
}
.process-connector {
  position: absolute;
  top: 56px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}
.process-step {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.process-step + .process-step::before {
  content: '→';
  position: absolute;
  left: -8px;
  top: 32px;
  color: rgba(201,168,76,0.5);
  font-size: 1.3rem;
}
.step-number-wrap {
  position: relative;
  width: 72px; height: 72px;
  margin: 0 auto 24px;
}
.step-bg-num {
  position: absolute;
  inset: -8px;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  pointer-events: none;
}
.step-circle {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   SOBRE
   ══════════════════════════════════════════════════════════════ */
.section-sobre { background: var(--cream); }
.sobre-photo-wrap {
  position: relative;
}
.sobre-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.sobre-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: linear-gradient(160deg, #d8c4b0, #c0a888);
}
.sobre-photo::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 72px; height: 72px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-xl) 0 0 0;
  z-index: 2;
}
.sobre-photo::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 72px; height: 72px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-xl) 0;
  z-index: 2;
}
.oab-badge {
  position: absolute;
  bottom: 28px; right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 3;
}
.oab-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--wine);
  line-height: 1;
}
.oab-badge span { font-size: 0.7rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.sobre-subtitle { color: var(--gold-dark); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 20px; text-transform: uppercase; }
.sobre-text { font-size: 0.98rem; color: var(--gray-dark); line-height: 1.82; margin-bottom: 24px; }
/* Pillars of authority */
.sobre-pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.sobre-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(123,29,29,0.1);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sobre-pillar:hover { border-color: rgba(123,29,29,0.22); box-shadow: var(--shadow-xs); }
.sobre-pillar-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, rgba(123,29,29,0.08), rgba(201,168,76,0.1));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  flex-shrink: 0;
}
.sobre-pillar strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.sobre-pillar span {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
}

.sobre-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.sobre-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid rgba(123,29,29,0.15);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wine);
  transition: all 0.2s;
}
.sobre-badge:hover { background: rgba(123,29,29,0.05); border-color: var(--wine); }

/* ══════════════════════════════════════════════════════════════
   DEPOIMENTOS
   ══════════════════════════════════════════════════════════════ */
.section-depo { background: var(--white); }
.depo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
}
.depo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.depo-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
  font-style: italic;
}
.depo-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.depo-text { font-size: 0.93rem; color: var(--dark); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  font-family: var(--font-serif);
}
.depo-author-info strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--dark); }
.depo-author-info span { font-size: 0.77rem; color: var(--gray); font-weight: 500; }
.depo-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--gray-mid);
}
.depo-aggregate {
  text-align: center;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-light);
}
.aggregate-stars { font-size: 1.3rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; }
.aggregate-text { font-size: 0.88rem; color: var(--gray); }
.aggregate-text strong { color: var(--dark); }

/* ══════════════════════════════════════════════════════════════
   VIDEO
   ══════════════════════════════════════════════════════════════ */
.section-video {
  background: var(--dark-soft);
  position: relative;
  overflow: hidden;
}
.section-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section-video .section-title { color: var(--white); }
.section-video .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto 40px; text-align: center; }
.video-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.55);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.1);
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* Thumbnail play approach */
.video-thumb {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
  display: block;
}
.video-thumb:hover img { opacity: 0.65; }
.video-play-btn {
  position: relative;
  z-index: 2;
  transition: transform 0.3s var(--ease-out), filter 0.3s;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.video-thumb:hover .video-play-btn { transform: scale(1.1); }
.video-thumb-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.52);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.video-caption { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-align: center; margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.section-faq { background: var(--cream); }
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: rgba(201,168,76,0.35); box-shadow: var(--shadow-md); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s, background 0.2s;
}
.faq-trigger:hover { color: var(--wine); background: rgba(123,29,29,0.02); }
.faq-item.open .faq-trigger { color: var(--wine); }
.faq-toggle {
  width: 30px; height: 30px;
  background: var(--gray-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gray);
  transition: background 0.25s, transform 0.3s, color 0.2s;
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--wine);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out);
}
.faq-item.open .faq-body { max-height: 320px; }
.faq-body-inner {
  padding: 18px 26px 24px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.84;
  border-top: 1px solid var(--gray-pale);
}
.faq-body-inner strong { color: var(--dark); }

/* ══════════════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(150deg, var(--wine) 0%, var(--wine-dark) 60%, #3A0E0E 100%);
  text-align: center;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.section-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.section-cta .section-title { color: var(--white); max-width: 720px; margin: 0 auto 18px; font-size: clamp(2.1rem, 4vw, 3.2rem); }
.section-cta .section-title em { color: var(--gold-light); }
.section-cta .section-desc { color: rgba(255,255,255,0.72); margin: 0 auto 40px; max-width: 560px; }
.cta-security {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.cta-microcopy span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.cta-microcopy span svg { flex-shrink: 0; opacity: 0.75; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.footer-brand .subtitle {
  font-size: 0.72rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.75; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-wa-link {
  color: #4edd8a !important;
  font-weight: 600;
}
.footer-wa-link:hover { color: var(--green-wa) !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; }
.footer-notice {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  max-width: 480px;
  text-align: right;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 14px 22px 14px 16px;
  box-shadow: var(--shadow-wa);
  animation: pulse-wa 2.8s ease-in-out infinite;
  transition: transform 0.22s var(--ease-out), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  font-weight: 600;
  font-size: 0.88rem;
}
.float-wa.visible { opacity: 1; pointer-events: all; }
.float-wa:hover { transform: scale(1.04) translateY(-2px); animation: none; box-shadow: 0 12px 44px rgba(37,211,102,0.6); }
.float-wa-icon { flex-shrink: 0; }
@media (max-width: 600px) {
  .float-wa { padding: 0; width: 58px; height: 58px; justify-content: center; border-radius: 50%; }
  .float-wa-label { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   SOCIAL PROOF TOAST
   ══════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 980;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  transform: translateX(-120%);
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
  opacity: 0;
  border-left: 3px solid var(--green-wa);
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.toast-content p { font-size: 0.8rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.toast-content span { font-size: 0.72rem; color: var(--gray); }
.toast-dot { width: 6px; height: 6px; background: var(--green-wa); border-radius: 50%; flex-shrink: 0; animation: dot-pulse 1.8s infinite; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-step + .process-step::before { display: none; }
}

@media (max-width: 900px) {
  .site-header { top: 35px; }
  .header-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .hero .photo-card { max-width: 340px; margin: 0 auto; }
  .hero .photo-card img { height: 320px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gray-light); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--gray-light); border-right: none; }
  .sobre-photo img { height: 340px; }
  .oab-badge { right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .footer-notice { text-align: left; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .urgency-bar { font-size: 0.76rem; }
  .site-header { top: 33px; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 2.2rem; }
  .cta-microcopy { gap: 14px; }
  .sobre-pillars { gap: 10px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-cta { padding: 80px 0; }
  .toast { left: 16px; max-width: 280px; }
}
