/* ============================================================
   KARLA TAVARES — ADVOCACIA TRABALHISTA
   Design: premium jurídico · navy profundo + dourado discreto
   Tipografia: Clash Display (títulos) + Satoshi (texto)
   Ícones: Phosphor Icons (light / fill)
   ============================================================ */

:root {
  /* Cores */
  --navy-deep: #0A2540;
  --navy: #003B65;
  --navy-mid: #0D4878;
  --navy-soft: #14538a;
  --gold: #C5A572;
  --gold-light: #DCC9A3;
  --gold-dark: #A98B5B;
  --cream: #F1F3F5;
  --grey: #E5E7EB;
  --white: #FFFFFF;
  --ink: #1C2B3A;
  --ink-soft: #51606F;

  /* Tipografia */
  --font-display: "Clash Display", "Segoe UI", sans-serif;
  --font-body: "Satoshi", -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.serif { font-family: var(--font-display); }

/* Ícones Phosphor — herdam a cor do container */
i[class^="ph-"], i[class*=" ph-"] {
  display: inline-flex;
  line-height: 1;
}

::selection { background: var(--gold); color: var(--navy-deep); }

/* ============ CONTAINER ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

/* ============ TIPOGRAFIA / ELEMENTOS BASE ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--dark { color: var(--gold-dark); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.section__title em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-dark);
}
.section--navy .section__title em { color: var(--gold-light); }

.section__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
}

.section__head {
  max-width: 720px;
  margin-bottom: 64px;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn i { font-size: 20px; }
.btn--sm i { font-size: 17px; }

.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(197, 165, 114, 0.35);
}
.btn--gold:hover {
  box-shadow: 0 8px 30px rgba(197, 165, 114, 0.5);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 59, 101, 0.25);
}
.btn--navy:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 30px rgba(0, 59, 101, 0.35);
}

.btn--outline {
  border: 1px solid rgba(10, 37, 64, 0.4);
  color: var(--navy-deep);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(10, 37, 64, 0.05);
}

/* ============ ANIMAÇÕES DE ENTRADA ============ */
.reveal-load {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-load { opacity: 1; transform: none; animation: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(10, 37, 64, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand__monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  border: 1px solid rgba(10, 37, 64, 0.35);
  border-radius: 2px;
  position: relative;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.brand__monogram::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(10, 37, 64, 0.15);
  border-radius: 1px;
  transition: border-color 0.4s var(--ease);
}
.header.is-scrolled .brand__monogram {
  color: var(--gold-light);
  border-color: rgba(197, 165, 114, 0.55);
}
.header.is-scrolled .brand__monogram::after { border-color: rgba(197, 165, 114, 0.25); }

.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease);
}
.brand__text small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 0.4s var(--ease);
}
.header.is-scrolled .brand__text strong { color: var(--white); }
.header.is-scrolled .brand__text small { color: var(--gold-light); }

.header__nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
.header__nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.header__nav a:hover { color: var(--navy); }
.header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header.is-scrolled .header__nav a { color: rgba(255, 255, 255, 0.85); }
.header.is-scrolled .header__nav a:hover { color: var(--gold-light); }
.header.is-scrolled .header__nav a::after { background: var(--gold); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  transition: transform 0.35s var(--ease), opacity 0.35s, background 0.35s;
}
.header.is-scrolled .header__burger span { background: var(--white); }
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu nav a:not(.btn):hover { color: var(--gold-light); }
.mobile-menu .btn { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--cream);
  color: var(--navy-deep);
  padding: 160px 0 110px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Foto da advogada como camada de fundo opaca */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.32;
  filter: grayscale(25%) contrast(1.02);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
}

/* Overlay claro pra suavizar a foto e manter legibilidade do texto */
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(241, 243, 245, 0.55) 0%, rgba(241, 243, 245, 0.82) 70%, var(--cream) 100%),
    linear-gradient(180deg, rgba(241, 243, 245, 0.3) 0%, rgba(241, 243, 245, 0.65) 100%);
}

/* Linhas verticais sutis — remete a colunas / arquitetura clássica */
.hero__lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(100% / 6 - 1px),
    rgba(10, 37, 64, 0.05) calc(100% / 6 - 1px),
    rgba(10, 37, 64, 0.05) calc(100% / 6)
  );
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(180, 188, 196, 0.28) 0%, transparent 60%);
  filter: blur(40px);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

/* Rótulo do hero em formato de pílula, para ancorar a hierarquia */
.hero .eyebrow {
  padding: 10px 22px;
  border: 1px solid rgba(120, 134, 148, 0.35);
  border-radius: 100px;
  background: rgba(180, 188, 196, 0.18);
  color: var(--ink-soft);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  word-spacing: 0.12em;
  margin-top: 32px;
  color: var(--navy-deep);
}
.hero__title em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy-deep);
}

.hero__sub {
  margin-top: 24px;
  font-size: clamp(17px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero__actions .btn--lg {
  padding: 20px 44px;
  font-size: 17px;
}

/* Placeholder elegante enquanto não há foto */
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(180, 188, 196, 0.18) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  z-index: 1;
}
.photo-placeholder__monogram {
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 400;
  color: rgba(197, 165, 114, 0.5);
  line-height: 1;
}
.photo-placeholder__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.photo-placeholder--light {
  background:
    radial-gradient(circle at 30% 20%, rgba(180, 188, 196, 0.25) 0%, transparent 50%),
    linear-gradient(160deg, #e6e9ec 0%, #cfd3d8 100%);
}
.photo-placeholder--light .photo-placeholder__monogram { color: rgba(169, 139, 91, 0.55); }
.photo-placeholder--light .photo-placeholder__label { color: rgba(28, 43, 58, 0.4); }

/* Indicador de scroll */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  overflow: hidden;
}
.hero__scroll span {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip {
  background: var(--white);
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  padding: 36px 0;
  color: var(--ink);
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.strip__item { display: flex; flex-direction: column; gap: 4px; }
.strip__item strong {
  font-size: 19px;
  font-weight: 500;
  color: var(--gold-dark);
}
.strip__item span {
  font-size: 14px;
  color: var(--ink-soft);
}
.strip__divider {
  width: 1px;
  height: 44px;
  background: var(--grey);
  flex-shrink: 0;
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
.section { padding: 110px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy {
  background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}

.section__cta {
  margin-top: 64px;
  text-align: center;
}
.section__cta p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
/* Filete dourado que cresce no hover */
.area-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.1);
  border-color: transparent;
}
.area-card:hover::before { transform: scaleX(1); }

.area-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 59, 101, 0.06), rgba(0, 59, 101, 0.12));
  border-radius: var(--radius);
  color: var(--navy);
  margin-bottom: 22px;
  font-size: 28px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.area-card:hover .area-card__icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
}

.area-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--navy-deep);
}
.area-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.sobre__visual { position: relative; }

.sobre__photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.18);
}
.sobre__photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 165, 114, 0.5);
  border-radius: var(--radius-lg);
  transform: translate(-16px, 16px);
  z-index: -1;
}
.sobre__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  position: relative;
  z-index: 2;
}
.sobre__photo.img-missing { display: none; }

.sobre__oab {
  position: absolute;
  top: 28px;
  right: -24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(10, 37, 64, 0.2);
}
.sobre__oab strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.sobre__oab span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
}

.sobre__content .section__title { color: var(--navy-deep); }

.sobre__lead {
  margin-top: 26px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
}

.sobre__content > p:not(.sobre__lead) {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.sobre__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sobre__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
}
.sobre__list i {
  color: var(--gold-dark);
  flex-shrink: 0;
  font-size: 22px;
}

.sobre__quote {
  margin-top: 36px;
  padding: 26px 30px;
  border-left: 2px solid var(--navy);
  background: rgba(180, 188, 196, 0.15);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.sobre__quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-deep);
}

.sobre__content .btn { margin-top: 36px; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}

.dif-item { text-align: left; }

.dif-item__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey);
  border-radius: 50%;
  color: var(--gold-dark);
  margin-bottom: 22px;
  position: relative;
  font-size: 28px;
  transition: border-color 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease);
}
.dif-item:hover .dif-item__icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
  transform: scale(1.06) rotate(-4deg);
}

.dif-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.dif-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   COMO FUNCIONA — TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.timeline__line {
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 15%, var(--gold-dark) 85%, transparent);
  opacity: 0.4;
}

.timeline__step {
  position: relative;
  text-align: left;
}

.timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: var(--white);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.timeline__step:hover .timeline__num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 59, 101, 0.3);
}

.timeline__body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.timeline__body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.depo-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.depo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 165, 114, 0.55);
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.1);
}

.depo-card__stars {
  display: flex;
  gap: 4px;
  color: var(--gold-dark);
  font-size: 18px;
}

.depo-card blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}

.depo-card figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--grey);
}

.depo-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.depo-card figcaption strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
}
.depo-card figcaption small {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: var(--cream);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq__item[open] {
  border-color: rgba(169, 139, 91, 0.5);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.07);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-dark); }

.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold-dark);
  transition: transform 0.4s var(--ease);
}
.faq__icon::before {
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  padding: 0 30px 28px;
}
.faq__answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.faq__answer strong { color: var(--navy); }

.faq__cta {
  margin-top: 56px;
  text-align: center;
}
.faq__cta p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* ============================================================
   CTA FINAL + FORMULÁRIO
   ============================================================ */
.cta-final {
  position: relative;
  color: var(--ink);
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(180, 188, 196, 0.28) 0%, transparent 55%),
    repeating-linear-gradient(90deg, transparent, transparent calc(100% / 6 - 1px), rgba(10, 37, 64, 0.035) calc(100% / 6 - 1px), rgba(10, 37, 64, 0.035) calc(100% / 6));
}

.cta-final__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: start;
}

.cta-final__text {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
}

.cta-final__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-final__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
}
.cta-final__info div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.cta-final__info i { color: var(--gold-dark); flex-shrink: 0; font-size: 20px; }

/* Formulário */
.lead-form {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 30px 70px rgba(10, 37, 64, 0.12);
  color: var(--ink);
}
.lead-form h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.lead-form > p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.18);
}
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.lead-form__lgpd {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-align: center;
}
.lead-form__lgpd a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: #061c30;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.9fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__col--brand p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.brand__monogram--footer { width: 42px; height: 42px; font-size: 17px; }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 21px;
  transition: border-color 0.4s, color 0.4s, background 0.4s, transform 0.4s var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(197, 165, 114, 0.08);
  transform: translateY(-3px);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__col ul li strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer__col ul li a,
.footer__col ul li span {
  font-size: 14.5px;
  line-height: 1.6;
  transition: color 0.3s;
}
.footer__col ul li a:hover { color: var(--gold-light); }

.footer__nav { gap: 12px !important; }
.footer__nav a {
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.footer__nav a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer__legal {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__legal p {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 880px;
}
.footer__legal p + p { margin-top: 12px; }
.footer__legal strong { color: rgba(255, 255, 255, 0.65); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__bottom-links a { transition: color 0.3s; }
.footer__bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whats-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: var(--white);
  font-size: 32px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}
.whats-float.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.whats-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}
/* Pulso */
.whats-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}

.whats-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.whats-float:hover .whats-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
  .hero__inner { gap: 48px; }
  .sobre__inner { gap: 56px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }

  /* Hero ocupa a tela inteira do celular: infos > CTA */
  /* (padding inferior maior desloca o conteúdo para cima do centro) */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 90px 0 140px;
  }
  .hero .eyebrow {
    padding: 8px 18px;
    font-size: 11.5px;
  }
  .hero__title { margin-top: 26px; }
  .hero__sub { margin-top: 18px; font-size: 16.5px; }
  .hero__actions { margin-top: 38px; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  .strip__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .strip__divider { display: none; }

  .timeline { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .timeline__line { display: none; }

  .depo-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__visual { max-width: 400px; margin: 0 auto; width: 100%; }
  .sobre__oab { right: 12px; }

  .cta-final__inner { grid-template-columns: 1fr; gap: 64px; }

  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }
}

@media (max-width: 640px) {
  .areas-grid { grid-template-columns: 1fr; gap: 16px; }
  .area-card { padding: 30px 26px; }
  .area-card h3 { font-size: 18px; }
  .area-card p { font-size: 14px; }

  .dif-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }

  .timeline { grid-template-columns: 1fr; gap: 40px; }

  .cta-final__actions .btn { width: 100%; }

  .lead-form { padding: 32px 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .brand__text strong { font-size: 16px; }
  .brand__text small { font-size: 9.5px; }

  .whats-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
}

@media (max-width: 420px) {
  .areas-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
}
