/* =========================================================================
   Jônatas Pereira Assessoria Jurídica

   Transcrição fiel de ".design/project/Landing Jonatas Pereira.dc.html"
   (export do Claude Design). Cada valor abaixo é o valor literal do design.
   Tokens são usados apenas para cores e famílias tipográficas — o mapeamento
   é 1:1 com os hex do design. Espaçamentos ficam literais de propósito, para
   evitar qualquer desvio em relação ao mock aprovado.
   ========================================================================= */

/* As @font-face vivem em /assets/fonts/fonts.css, carregado por <link> antes
   deste arquivo — evita a cascata serial que um @import criaria. */

:root {
  /* Cores — exatamente as do design */
  --navy: #1B2A4A;
  --navy-deep: #16233D;
  --navy-hover: #24365E;
  --gold: #C9A24D;
  --gold-soft: #F0D9A0;
  --gold-dark: #8A6F2E;   /* numeração das etapas, marcadores, faq-sign */
  --gold-deep: #8A6D2F;   /* título do card OAB */
  --cream: #FAF8F5;
  --warm-gray: #F2EEE7;
  --sand: #F4EFE4;        /* card de alerta */
  --white: #FFFFFF;
  --ink: #1C1C1E;
  --ink-body: #2A2A2E;
  --ink-soft: #333336;
  --ink-muted: #4A4A4F;
  --on-navy: #E8E5DE;
  --on-navy-soft: #D9D5CC;
  --on-navy-faint: #BDBAB2;
  --hero-desc: #F3F1EC;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5B;

  /* Tipografia */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* Escalas fluidas do design */
  --t-body: clamp(18px, calc(1.15vw + 16px), 20px);
  --t-h1: clamp(31px, 7.2vw, 52px);
  --t-h2: clamp(27px, 5.4vw, 40px);
  --t-h2-alerta: clamp(25px, 5vw, 38px);

  /* Layout do design */
  --largura: 1120px;
  --largura-faq: 860px;
  --pad-x: clamp(20px, 5vw, 40px);
  --pad-y: clamp(40px, 8vw, 80px);
}

/* =========================================================================
   Base
   ========================================================================= */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }

img { display: block; }

a { color: var(--navy); }
a:hover { color: var(--gold); }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

summary::-webkit-details-marker { display: none; }
summary::marker { content: ""; }

/* =========================================================================
   Container padrão (o "div interno" de cada section no design)
   ========================================================================= */
.container {
  max-width: var(--largura);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}

.container--faq { max-width: var(--largura-faq); }

/* Títulos de seção + régua dourada */
.sec-title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--t-h2);
  line-height: 1.2;
  color: var(--navy);
}

.sec-title--light { color: var(--white); }

.sec-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 30px;
}

.sec-rule--bio { width: 56px; margin-bottom: 48px; }

/* Alvo de âncora sob o header fixo */
#atuacao,
#como-funciona,
#documentos,
#duvidas,
#contato {
  scroll-margin-top: 100px;
  outline: none;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 41;
  background: rgba(27, 42, 74, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 77, 0.28);
}

.header-inner {
  max-width: var(--largura);
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 20px;
}

.logo {
  flex: 0 0 auto;
  display: block;
}

.header .logo img {
  height: clamp(44px, 12vw, 60px);
  width: auto;
  max-width: 64vw;
}

.secnav {
  flex: 1 1 100%;
  order: 3;
  min-width: 0;
}

.secnav-wrap { position: relative; }

.secnav-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.secnav-scroller::-webkit-scrollbar { display: none; }

.secnav-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
  height: 48px;
  width: max-content;
  min-width: 100%;
}

.secnav-list li {
  display: flex;
  scroll-snap-align: center;
}

.secnav a {
  display: flex;
  align-items: center;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.secnav a:hover { color: var(--white); }
.secnav a[aria-current="true"] { color: var(--white); }

.secnav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.secnav-filete {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  border-radius: 1px;
  background: var(--gold);
  transform-origin: left center;
  transform: translateX(0) scaleX(0);
  opacity: 0;
  will-change: transform;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease;
  pointer-events: none;
}

.secnav-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(27, 42, 74, 0) 0%, rgba(27, 42, 74, 0.94) 100%);
  opacity: 1;
  transition: opacity 180ms ease;
}

.oab-badge {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--white);
  font-weight: 600;
  flex: 0 0 auto;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
}

@media (min-width: 768px) {
  .secnav { flex: 1 1 auto; order: 0; }
  /* O mock declara height:52px e gap:28px aqui, mas os valores inline da <ul>
     (48px / 20px) vencem essa regra — então o render mantém 48px e 20px.
     Copiado o que o design de fato renderiza, não o que a regra pede. */
  .secnav-list { justify-content: center; }
  .secnav a { font-size: 15px; }
  .secnav-fade { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  background-color: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 77, 0.45);
}

.hero-text {
  flex: 1 1 100%;
  min-width: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: clamp(44px, 7vw, 72px) var(--pad-x) clamp(44px, 7vw, 72px) max(20px, calc((100vw - 1120px) / 2));
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.hero-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--t-h1);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: pretty;
}

.hero-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 18px;
}

.hero-desc {
  margin: 0 0 28px;
  font-size: var(--t-body);
  line-height: 1.65;
  max-width: 34em;
  color: var(--hero-desc);
  text-wrap: pretty;
}

.hero-foot {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-navy);
}

.hero-media {
  display: none;
  position: relative;
  flex: 1 1 45%;
  min-width: 0;
  background: var(--navy-deep);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

.hero-media-fade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 120px;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(27, 42, 74, 0) 100%);
}

@media (min-width: 1024px) {
  .hero { min-height: 620px; }
  .hero-text { flex: 0 0 55%; }
  .hero-media { display: block; }
}

@media (max-width: 1023px) {
  .hero {
    background-image:
      linear-gradient(rgba(27, 42, 74, 0.90), rgba(27, 42, 74, 0.90)),
      url("/assets/img/hero-fachada-640.webp");
    background-size: cover;
    background-position: center;
  }
  .hero-text { padding: 56px 20px; }
  /* No design o texto centraliza mas os itens flex continuam à esquerda
     (o align-items: flex-start inline vence a media query), então o botão
     do WhatsApp fica alinhado à esquerda. Reproduzido como está no mock. */
  .hero-inner { text-align: center; }
  .hero-rule { margin-left: auto; margin-right: auto; }
}

/* =========================================================================
   BOTÕES
   ========================================================================= */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 16px 22px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: background 160ms ease;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: var(--white);
}

/* Na seção de contato o design usa uma sombra neutra */
.cta-row .btn-whatsapp { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18); }

.btn-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 28px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease;
}

.btn-tel:hover {
  background: rgba(27, 42, 74, 0.06);
  color: var(--navy);
}

.btn-politica {
  align-self: flex-start;
  min-height: 48px;
  padding: 12px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(201, 162, 77, 0.6);
  color: var(--gold-soft);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.btn-politica:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.btn-fechar {
  min-height: 48px;
  padding: 14px 26px;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease;
}

.btn-fechar:hover { background: var(--navy-hover); }

/* =========================================================================
   BIO — "Quem vai atender você"
   ========================================================================= */
.sec-bio {
  background: var(--cream);
  color: var(--ink);
}

.sec-bio .container {
  padding-top: var(--pad-y);
  padding-bottom: 64px;
}

.bio-grid {
  display: grid;
  gap: 40px;
}

.bio-left {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.bio-foto { display: block; }

.foto-perfil {
  display: block;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
  box-shadow: 0 0 0 1px rgba(201, 162, 77, 0.55), 0 12px 32px -8px rgba(28, 28, 30, 0.22);
}

.bio-texto { min-width: 0; }

.bio-p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 62ch;
  color: var(--ink-body);
  text-align: left;
  text-wrap: pretty;
}

.bio-texto .bio-p:first-child { margin: -4px 0 20px; }

.card-oab {
  align-self: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 77, 0.38);
  border-radius: 4px;
  box-shadow: 0 2px 12px -4px rgba(28, 28, 30, 0.10);
}

.card-oab-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gold-deep);
}

.card-oab-title svg {
  flex: 0 0 auto;
  margin-top: 3px;
}

.card-oab .bio-p { max-width: 46ch; }

@media (min-width: 768px) {
  .bio-left {
    grid-template-columns: 132px 1fr;
    gap: 28px;
    align-items: start;
    justify-items: start;
  }
}

@media (min-width: 1024px) {
  .sec-bio .container { padding-bottom: 96px; }
  .bio-grid { grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }
  .bio-left { grid-template-columns: 168px 1fr; gap: 32px; }
  .foto-perfil { width: 168px; height: 168px; }
  .bio-p { font-size: 19px; }
  .card-oab { padding: 32px; }
}

/* =========================================================================
   ÁREAS DE ATUAÇÃO
   ========================================================================= */
.sec-atuacao { background: var(--navy); }

.areas-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.area-card {
  background: var(--white);
  border: 1px solid rgba(28, 28, 30, 0.10);
  border-top: 2px solid var(--gold);
  border-radius: 4px;
  padding: 22px;
}

.area-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--navy);
}

.area-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* =========================================================================
   COMO FUNCIONA
   ========================================================================= */
.sec-how {
  background: var(--warm-gray);
  border-top: 1px solid rgba(28, 28, 30, 0.08);
  border-bottom: 1px solid rgba(28, 28, 30, 0.08);
}

.steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-dark);
}

.step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--navy);
}

.step p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-muted);
}

.how-foot {
  margin: 0;
  font-size: var(--t-body);
  line-height: 1.7;
  max-width: 62ch;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* =========================================================================
   DOCUMENTOS
   ========================================================================= */
.sec-docs { background: var(--navy); }

.docs-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px 40px;
}

.docs-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--on-navy);
  border-bottom: 1px solid rgba(240, 217, 160, 0.28);
  padding-bottom: 12px;
}

.docs-mark {
  color: var(--gold);
  font-size: 15px;
}

.docs-foot {
  margin: 0;
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--on-navy);
}

/* =========================================================================
   ALERTA — golpes
   ========================================================================= */
.alert-card {
  background: var(--sand);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: clamp(24px, 4.5vw, 44px);
}

.alert-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.alert-head svg {
  flex: 0 0 auto;
  margin-top: 4px;
}

.alert-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--t-h2-alerta);
  line-height: 1.2;
  color: var(--navy);
  text-wrap: pretty;
}

.alert-card > p {
  margin: 0 0 18px;
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.alert-card > p:last-child { margin: 0; }

.alert-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alert-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink);
}

.alert-list li span[aria-hidden] { color: var(--gold-dark); }

/* =========================================================================
   FAQ
   ========================================================================= */
.sec-faq { background: var(--navy); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: 4px;
}

.faq-item summary {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 48px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.faq-sign {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  color: var(--gold-dark);
  transition: transform 160ms ease;
}

.faq-item[open] .faq-sign { transform: rotate(90deg); }

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* =========================================================================
   CONTATO
   ========================================================================= */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

.addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.addresses address {
  font-style: normal;
  background: var(--white);
  border: 1px solid rgba(28, 28, 30, 0.10);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
  padding: 22px;
}

.addresses h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
}

.addresses p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--navy);
  color: var(--on-navy);
}

.footer .container {
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(36px, 6vw, 64px);
}

.footer .logo img {
  height: clamp(46px, 13vw, 64px);
  width: auto;
  max-width: 68vw;
}

.footer-head {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 162, 77, 0.35);
}

.footer-oab {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gold-soft);
}

.footer-body {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-legal-name {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--white);
}

.footer-areas {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-navy-soft);
}

.footer-disclaimer {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  max-width: 78ch;
  color: var(--on-navy-faint);
  text-wrap: pretty;
}

/* =========================================================================
   MODAL — Política de Privacidade
   ========================================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(28, 28, 30, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] { display: none; }

.modal-dialog {
  background: var(--cream);
  border: 1px solid rgba(28, 28, 30, 0.15);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  max-width: 620px;
  width: 100%;
  max-height: 84vh;
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

/* Recebe foco programático ao abrir (tabindex="-1"), mas não é alcançável por
   Tab — o anel de foco fica nos controles internos, não na moldura. */
.modal-dialog:focus { outline: none; }

.modal-dialog h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  color: var(--navy);
}

.modal-dialog p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.modal-dialog p:last-of-type { margin: 0 0 22px; }

/* =========================================================================
   FAB — WhatsApp flutuante
   ========================================================================= */
.fab {
  position: fixed;
  z-index: 50;
  right: clamp(20px, 3vw, 28px);
  bottom: clamp(20px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 300ms ease;
  opacity: 0;
  visibility: hidden;
}

.fab.is-visible {
  opacity: 1;
  visibility: visible;
}

.fab-label {
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.fab:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 899px) {
  .fab-label { display: none !important; }
}

.fab-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 5vw, 64px);
  height: clamp(60px, 5vw, 64px);
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: background 160ms ease, transform 160ms ease;
}

.fab:hover .fab-bubble {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

/* =========================================================================
   Reveal — só nos três elementos que o design marca (bio)
   Sem JS o conteúdo aparece normalmente.
   ========================================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js .bio-foto { transition-delay: 0ms; }
.js .bio-texto { transition-delay: 80ms; }
.js .card-oab { transition-delay: 160ms; }

/* =========================================================================
   Movimento reduzido
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .secnav-filete { transition: none !important; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================================
   Impressão
   ========================================================================= */
@media print {
  .header, .hero-media, .fab, .modal { display: none !important; }
  body { background: #FFFFFF; color: #000000; }
}
