/* ═══════════════════════════════════════════════════════
   BRUNA LEVENSTEIN ADVOCACIA — Design System
   Paleta extraída da logomarca oficial
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores primárias — extraídas da logo */
  --navy:        #1E3A5F;
  --navy-deep:   #152C48;
  --navy-mid:    #2A4E7A;
  --navy-pale:   #E8EFF7;
  --cream:       #F4F0EA;
  --cream-dark:  #EAE4D9;

  /* Acento editorial */
  --gold:        #9E7D52;
  --gold-light:  #BDA07A;
  --gold-pale:   #F0E6D3;

  /* Neutros */
  --ink:         #1A1C22;
  --stone:       #6B6E7A;
  --white:       #FDFBF8;

  /* Tipografia */
  --serif: 'Cormorant', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  /* Espaçamento */
  --section-v: 96px;
  --section-h: 64px;
  --radius:    2px;

  /* Transições */
  --t-fast:   .18s ease;
  --t-mid:    .28s ease;
  --t-slow:   .45s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-h);
  background: rgba(253,251,248,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,58,95,0.08);
  transition: height var(--t-mid), box-shadow var(--t-mid);
}

#nav.scrolled {
  height: 58px;
  box-shadow: 0 2px 20px rgba(30,58,95,0.07);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height var(--t-mid);
}
#nav.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  position: relative;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════
   BOTÕES
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 15px 30px;
  cursor: pointer;
  border: none;
  transition: background var(--t-fast), opacity var(--t-fast), transform var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Variantes */
.btn-primary  { background: var(--navy);   color: white;  }
.btn-primary:hover  { background: var(--navy-deep); }

.btn-wa       { background: #25D366; color: white;  }
.btn-wa svg   { fill: white; }
.btn-wa:hover { opacity: .88; }

.btn-outline  { background: transparent; color: var(--navy); border: 1px solid rgba(30,58,95,.28); }
.btn-outline:hover { border-color: var(--navy); background: rgba(30,58,95,.04); }

.btn-ghost-white { background: transparent; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: white; }

.btn-nav-wa {
  background: #25D366;
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--t-fast);
}
.btn-nav-wa:hover { opacity: .87; }
.btn-nav-wa svg { width: 14px; height: 14px; fill: white; }

/* ═══════════════════════════════════════════════════════
   LAYOUT HELPERS
   ═══════════════════════════════════════════════════════ */
.page   { display: none; }
.page.active { display: block; }

.sec {
  padding: var(--section-v) var(--section-h);
}

.inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sec-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-label::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.sec-label.light { color: var(--gold-light); }
.sec-label.light::before { background: var(--gold-light); }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.14;
  color: var(--navy);
  letter-spacing: -.01em;
}

.sec-title.light { color: white; }
.sec-title em    { font-style: italic; color: var(--gold); }
.sec-title.light em { color: var(--gold-light); }

.deco-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0;
}
.deco-divider span { flex: 1; height: 1px; background: rgba(30,58,95,.1); }
.deco-divider i    { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.anim-1 { opacity: 0; animation: fadeUp .65s .10s ease forwards; }
.anim-2 { opacity: 0; animation: fadeUp .65s .22s ease forwards; }
.anim-3 { opacity: 0; animation: fadeUp .65s .34s ease forwards; }
.anim-4 { opacity: 0; animation: fadeUp .65s .46s ease forwards; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.d1 { transition-delay: .10s; }
.reveal.d2 { transition-delay: .20s; }
.reveal.d3 { transition-delay: .30s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   HOME — HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
  background: var(--cream);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px var(--section-h);
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent,
    rgba(30,58,95,.12) 30%,
    rgba(30,58,95,.12) 70%,
    transparent
  );
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--navy-mid);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 28px;
}

.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-sub strong { font-weight: 500; color: var(--ink); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-right {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--section-h) 80px 72px;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: 'BL';
  font-family: var(--serif);
  font-size: 300px;
  font-weight: 300;
  color: rgba(255,255,255,.025);
  position: absolute;
  bottom: -60px; right: -30px;
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
}

.hero-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  margin: 0 auto 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}

.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-placeholder {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,.35);
  text-align: center;
}

.hero-trust {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-dot {
  width: 5px; height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.trust-text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

.trust-text strong { color: rgba(255,255,255,.9); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   HOME — BENEFÍCIOS
   ═══════════════════════════════════════════════════════ */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(30,58,95,.07);
  margin-top: 56px;
}

.beneficio {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--t-mid);
}

.beneficio:hover { background: var(--cream); }

.ben-bar {
  width: 0; height: 2px;
  background: var(--navy);
  position: absolute;
  top: 0; left: 0;
  transition: width var(--t-slow);
}

.beneficio:hover .ben-bar { width: 100%; }

.ben-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  color: rgba(30,58,95,.08);
  line-height: 1;
  margin-bottom: 20px;
}

.ben-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ben-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 24px;
}

.ben-result {
  background: var(--navy-pale);
  border-left: 2px solid var(--navy);
  padding: 14px 16px;
}

.ben-result-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 4px;
}

.ben-result-text {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   HOME — DEPOIMENTOS
   ═══════════════════════════════════════════════════════ */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.dep-card {
  background: var(--white);
  border: 1px solid rgba(30,58,95,.08);
  padding: 36px 30px;
  transition: border-color var(--t-mid), transform var(--t-mid);
}

.dep-card:hover {
  border-color: rgba(30,58,95,.2);
  transform: translateY(-3px);
}

.dep-stars span { color: #C9973A; font-size: 14px; }

.dep-qmark {
  font-family: var(--serif);
  font-size: 52px;
  color: rgba(30,58,95,.08);
  line-height: 1;
  margin: 10px 0 6px;
}

.dep-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}

.dep-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}

.dep-role {
  font-size: 11px;
  color: var(--stone);
  margin-top: 3px;
}

.dep-sigilo {
  margin-top: 40px;
  background: var(--navy-pale);
  border-left: 3px solid var(--navy);
  padding: 20px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dep-sigilo svg { width: 18px; height: 18px; fill: var(--navy); flex-shrink: 0; margin-top: 2px; }
.dep-sigilo p   { font-size: 13px; color: var(--stone); line-height: 1.75; }
.dep-sigilo strong { color: var(--navy); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   CTA SECTION (dark)
   ═══════════════════════════════════════════════════════ */
.cta-dark {
  background: var(--navy);
  padding: var(--section-v) var(--section-h);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(158,125,82,.07), transparent 70%);
  pointer-events: none;
}

.cta-dark .sec-label { justify-content: center; }

.cta-dark-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  color: white;
  line-height: 1.18;
  margin: 12px auto 20px;
  max-width: 720px;
}

.cta-dark-title em { font-style: italic; color: var(--gold-light); }

.cta-dark-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.48);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.18);
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   SERVIÇOS — HERO
   ═══════════════════════════════════════════════════════ */
.srv-hero {
  background: var(--navy);
  padding: 140px var(--section-h) 80px;
  position: relative;
  overflow: hidden;
}

.srv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 90% 50%, rgba(158,125,82,.07), transparent 65%);
}

.srv-hero .inner { position: relative; z-index: 1; }

.srv-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  color: white;
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 680px;
}

.srv-hero-title em { font-style: italic; color: var(--gold-light); }

.srv-hero-lead {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.52);
  max-width: 560px;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════
   SERVIÇOS — ACCORDION
   ═══════════════════════════════════════════════════════ */
.srv-list {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}

.srv-item { border-bottom: 1px solid rgba(30,58,95,.08); }
.srv-item:first-child { border-top: 1px solid rgba(30,58,95,.08); }

.srv-header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 0;
  cursor: pointer;
  user-select: none;
}

.srv-n {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  color: rgba(30,58,95,.15);
  text-align: right;
  line-height: 1;
}

.srv-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  transition: color var(--t-fast);
}

.srv-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  margin-top: 4px;
}

.srv-item.open .srv-name { color: var(--gold); }

.srv-toggle {
  width: 24px; height: 24px;
  border: 1px solid rgba(30,58,95,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-mid);
}

.srv-toggle svg {
  width: 10px; height: 10px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  transition: transform var(--t-mid);
}

.srv-item.open .srv-toggle {
  background: var(--navy);
  border-color: var(--navy);
  transform: rotate(45deg);
}

.srv-item.open .srv-toggle svg { stroke: white; }

.srv-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-item.open .srv-body { max-height: 700px; }

.srv-body-inner {
  padding: 0 0 44px 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.srv-col-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.srv-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 16px;
}

.srv-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-items li {
  font-size: 13px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.srv-items li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 9px;
}

.srv-highlight {
  background: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 14px 18px;
  margin-top: 8px;
}

.srv-highlight-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.srv-highlight-text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
}

.srv-cta-strip {
  background: var(--cream);
  border: 1px solid rgba(30,58,95,.08);
  padding: 56px;
  text-align: center;
  margin-top: 56px;
}

.srv-cta-strip p {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 6px;
}

.srv-cta-strip span {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  display: block;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════════════════════ */
.sobre-hero {
  background: var(--cream);
  padding: 140px var(--section-h) 80px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sobre-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}

.sobre-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sobre-frame-placeholder {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,.3);
  text-align: center;
  position: relative;
  z-index: 1;
}

.sobre-frame-mono {
  font-family: var(--serif);
  font-size: 180px;
  font-weight: 300;
  color: rgba(255,255,255,.03);
  position: absolute;
  letter-spacing: -.04em;
  pointer-events: none;
}

.sobre-accent {
  position: absolute;
  left: -18px; top: 48px; bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
}

.sobre-tagline {
  background: var(--navy-pale);
  border: 1px solid rgba(30,58,95,.1);
  padding: 16px 20px;
  margin-top: 16px;
  text-align: center;
}

.sobre-tagline p {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--navy);
}

.sobre-lead {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 20px 0 24px;
}

.sobre-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Origem */
.origem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}

.origem-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 14px;
}

.origem-body strong { font-weight: 500; color: var(--ink); }

.cred-box {
  background: var(--cream);
  border: 1px solid rgba(30,58,95,.08);
  padding: 32px;
}

.cred-box-label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.cred-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.cred-list li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.5;
}

.cred-list li::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Missão */
.missao-sec {
  background: var(--navy);
  padding: var(--section-v) var(--section-h);
}

.missao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.missao-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.9;
  margin-bottom: 14px;
}

.missao-quote {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.55;
}

.valores-list { display: flex; flex-direction: column; }

.valor-item { border-bottom: 1px solid rgba(255,255,255,.06); padding: 22px 0; }
.valor-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }

.valor-head { display: flex; align-items: center; gap: 18px; margin-bottom: 7px; }
.valor-n { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--gold-light); min-width: 20px; }
.valor-t { font-size: 14px; font-weight: 500; color: white; letter-spacing: .02em; }
.valor-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.75; padding-left: 38px; }

/* Diferencial */
.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}

.dif-lead { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.9; margin-bottom: 16px; }

.dif-blockquote {
  background: var(--white);
  border: 1px solid rgba(30,58,95,.1);
  border-left: 3px solid var(--navy);
  padding: 24px 28px;
  margin-top: 24px;
}

.dif-blockquote p {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.dif-cards { display: flex; flex-direction: column; gap: 14px; }

.dif-card {
  background: var(--white);
  border: 1px solid rgba(30,58,95,.08);
  border-left: 2px solid transparent;
  padding: 22px 22px 22px 26px;
  transition: border-left-color var(--t-mid), transform var(--t-mid);
}

.dif-card:hover { border-left-color: var(--navy); transform: translateX(4px); }

.dif-card-title { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 5px; }
.dif-card-text  { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.75; }

/* Fechamento */
.fechamento {
  padding: var(--section-v) var(--section-h);
  text-align: center;
}

.fechamento-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.fechamento-title em { font-style: italic; color: var(--gold); }
.fechamento-sub  { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.85; max-width: 480px; margin: 0 auto 36px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--navy-deep);
  padding: 52px var(--section-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.04);
}

.ft-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: .85;
}

.ft-center { text-align: center; }
.ft-oab   { font-size: 11px; color: rgba(255,255,255,.22); letter-spacing: .07em; margin-bottom: 4px; }
.ft-legal { font-size: 11px; color: rgba(255,255,255,.14); line-height: 1.65; }

.ft-links { display: flex; justify-content: flex-end; gap: 20px; flex-wrap: wrap; }

.ft-link {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--t-fast);
}

.ft-link:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   WA FLOAT BUTTON
   ═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 400;
  box-shadow: 0 4px 20px rgba(37,211,102,.28);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.38);
}

.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-v: 72px; --section-h: 32px; }
  #nav { padding: 0 28px; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 28px 56px; }
  .hero-left::after { display: none; }
  .hero-right { padding: 48px 28px 60px; }

  .beneficios-grid { grid-template-columns: 1fr; }
  .dep-grid         { grid-template-columns: 1fr; }

  .sobre-grid, .origem-grid, .missao-grid, .dif-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-accent { display: none; }

  .srv-body-inner { grid-template-columns: 1fr; padding-left: 0; }
  .srv-header     { grid-template-columns: 44px 1fr auto; gap: 16px; }

  footer { grid-template-columns: 1fr; text-align: center; }
  .ft-links { justify-content: center; }
  .ft-logo  { display: flex; justify-content: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-ctas, .cta-btns, .fechamento-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns, .fechamento-btns { align-items: center; }
  .srv-cta-strip { padding: 36px 24px; }
}
