/* ── Reset & Base ───────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
/* a rolagem suave é feita no JS (js/main.js): o navegador desliga
   `scroll-behavior: smooth` quando o sistema pede menos movimento,
   e ela também brigaria com o scrollTo() por quadro da animação */

body {
  font-family: 'Archivo', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }


/* ── Rolagem entre seções ────────────────────────────────
   O header é fixo, então o alvo da âncora precisa reservar
   a altura dele — sem isso o título fica escondido embaixo. */

section[id],
#local {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

/* ── Entrada em cena ─────────────────────────────────────
   Estado padrão (sem `.js-revela`): tudo visível. O efeito
   só existe quando o script do <head> confirma suporte.    */

.js-revela [data-revela],
.js-revela [data-revela-lista] > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.js-revela [data-revela].em-cena,
.js-revela [data-revela-lista] > .em-cena {
  opacity: 1;
  transform: none;
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 85ms);
}

/* ── Layout ─────────────────────────────────────────── */

.wrap {
  width: min(100% - 2.5rem, 76rem);
  margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────── */

/* flutua sobre o hero sem fundo próprio — assim não há emenda
   de cor no topo; ganha o navy só depois que a página rola */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

.header.is-scrolled,
.header:has(.header__nav.is-open) {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--header-h);
}

/* ── Nav ─────────────────────────────────────────────── */

.header__nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.66);
  padding: 0.45rem 0.875rem;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* seção em que o leitor está agora */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: .875rem;
  right: .875rem;
  bottom: .18rem;
  height: 1.5px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-link.esta-aqui {
  color: #fff;
}

.nav-link.esta-aqui::after {
  transform: scaleX(1);
}

/* ── Botão Cotação ───────────────────────────────────── */

.btn-cotacao {
  display: inline-flex;
  align-items: center;
  margin-left: 0.875rem;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.btn-cotacao:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(176, 135, 63, 0.32);
}

/* ── Hamburger ───────────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.22s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Botões ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.625rem;
  border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s, color .2s, border-color .2s;
}

.btn:hover { transform: translateY(-2px); }

.btn__icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 6px 24px rgba(176, 135, 63, .35);
}

.btn--wpp {
  background: #1fa855;
  color: #fff;
  border-color: #1fa855;
  width: 100%;
}
.btn--wpp:hover {
  background: #178f47;
  border-color: #178f47;
  box-shadow: 0 6px 20px rgba(31, 168, 85, .3);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .7);
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  /* ocupa a tela toda — o header flutua por cima, sem emenda.
     A faixa da base cai na dobra e o dock assoma logo abaixo. */
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* topo livra o header; rodapé reserva a faixa clara, que é absoluta */
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 9.5rem;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 62% 48% at 50% 34%, rgba(34, 63, 145, .5) 0%, transparent 68%),
    linear-gradient(168deg, var(--navy) 0%, var(--navy-900) 78%);
}

/* ── Guilloché ───────────────────────────────────────────
   Linhas entrelaçadas geradas por senoides sobrepostas, como
   as de cédulas e apólices antigas. Camada mais baixa do hero;
   a máscara radial alivia o centro para não formar ruído atrás
   da fênix nem brigar com o glow dourado.                    */

.hero__guilloche {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  fill: none;
  stroke: #fff;
  stroke-width: .9;
  stroke-linecap: round;
  opacity: .05;
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 45%,
            rgba(0,0,0,.22) 0%, rgba(0,0,0,.6) 46%, #000 82%);
          mask-image: radial-gradient(ellipse 62% 58% at 50% 45%,
            rgba(0,0,0,.22) 0%, rgba(0,0,0,.6) 46%, #000 82%);
}

/* grão sutil — profundidade sem alterar a paleta */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .052;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='300' height='300' filter='url(%23g)'/></svg>");
  background-size: 240px 240px;
}

/* CTAs do hero num corpo levemente menor que o padrão do site */
.hero__ctas .btn {
  padding: .72rem 1.45rem;
  font-size: .875rem;
}

.hero__stage {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Marca da fênix no hero ──────────────────────────────
   Fase 1: traço em ouro que se desenha
   Fase 2: planeio contínuo
   Fase 3: parallax de profundidade (JS define --tilt-*)

   A abertura roda em todo dispositivo, por decisão de projeto —
   não há gate de prefers-reduced-motion aqui.                  */

.hero__mark {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(94%, 940px);
  transform:
    perspective(1400px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transform-origin: 50% 50%;
  transition: transform .55s var(--ease);
  pointer-events: none;
  user-select: none;
}

/* glow dourado ancorado nas asas — acompanha o parallax */
.hero__mark-glow {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 104%;
  aspect-ratio: 2.7 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(201, 166, 94, .28) 0%,
    rgba(201, 166, 94, .12) 38%,
    rgba(176, 135, 63, .04) 60%,
    transparent 76%);
  filter: blur(30px);
  opacity: 0;
  /* entra junto com o preenchimento e depois respira devagar */
  animation:
    fenix-glow 1.3s ease-out 2.1s forwards,
    fenix-glow-pulse 7.5s ease-in-out 3.4s infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes fenix-glow { to { opacity: 1; } }

@keyframes fenix-glow-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .72; }
}

.hero__mark-rise { position: relative; z-index: 1; }

.hero__mark-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* entrada dramática: a marca emerge e assenta enquanto é traçada */
.hero__mark-rise {
  transform-origin: 51% 60%;
  animation: fenix-rise 2.6s cubic-bezier(.16, .84, .28, 1) both;
}

/* Fase 2 — planeio; sem batida de asa, o emblema paira */
.hero__mark-glide {
  transform-origin: 51% 48%;
  animation: fenix-glide 6.8s ease-in-out 3.1s infinite;
}

/* Fase 1 — traço em ouro, desenhado devagar */
.fenix__ink {
  opacity: .95;
  animation: fenix-ink-out .55s ease-out 2.3s forwards;
}

.fenix__ink path {
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  will-change: stroke-dashoffset;
  animation: fenix-draw 1.7s cubic-bezier(.2, .7, .3, 1) forwards;
}

/* especificidade acima de `.fenix__ink path`, senão o atalho
   `animation` zera estes delays e o traço perde o escalonamento */
.fenix__ink path.fenix__ink-l { animation-delay: .35s; }
.fenix__ink path.fenix__ink-r { animation-delay: .55s; }
.fenix__ink path.fenix__ink-h { animation-delay: 1.35s; animation-duration: .7s; }

/* traço concluído: libera a promoção de camada */
.hero__mark.is-settled .fenix__ink path { will-change: auto; }

/* o ouro entrega o lugar ao branco sólido */
.fenix__fill {
  opacity: 0;
  animation: fenix-fill .6s ease-out 2.2s forwards;
}

@keyframes fenix-rise {
  from { transform: scale(.9) translate3d(0, 16px, 0); }
  to   { transform: scale(1)  translate3d(0, 0, 0); }
}

@keyframes fenix-draw    { to { stroke-dashoffset: 0; } }
@keyframes fenix-ink-out { to { opacity: 0; } }
@keyframes fenix-fill    { to { opacity: 1; } }

@keyframes fenix-glide {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(0, -9px, 0) rotate(1.1deg); }
}

/* ── Conteúdo do hero — entra depois da marca, sobrepondo-a ── */

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 660px;
  /* sobreposição sobre a parte baixa das asas */
  margin-top: clamp(-5rem, -5.4vw, -2.5rem);
}

.hero__content > * {
  opacity: 0;
  animation: hero-rise .75s cubic-bezier(.2, .7, .3, 1) forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 2.75s; }
.hero__content > *:nth-child(2) { animation-delay: 2.87s; }
.hero__content > *:nth-child(3) { animation-delay: 2.99s; }
.hero__content > *:nth-child(4) { animation-delay: 3.11s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1rem;
}

.hero__headline {
  font-size: clamp(2.15rem, 4.8vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.2rem;
  text-wrap: balance;
  /* descola do branco da marca na área de sobreposição */
  text-shadow: 0 2px 30px rgba(14, 33, 73, .85);
}

.hero__sub {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto 2.1rem;
  line-height: 1.7;
  max-width: 480px;
  text-shadow: 0 1px 18px rgba(14, 33, 73, .7);
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── Faixa clara na base do hero ─────────────────────────
   Corta o navy antes do primeiro scroll, sem tocar no centro
   onde a fênix está.                                        */

.hero__base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  opacity: 0;
  animation: hero-rise .8s cubic-bezier(.2, .7, .3, 1) 3.3s forwards;
}

.hero__base-curve {
  display: block;
  width: 100%;
  height: clamp(22px, 2.6vw, 36px);
  fill: var(--ivory);
}

/* placa limpa: só o ivory sob a curva, sem molduras */
.hero__plate {
  position: relative;
  background: var(--ivory);
  margin-top: -1px;
}

.hero__mini {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 3.6vw, 3rem);
  padding: .7rem 0 2.3rem;
}

.mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: .3rem .7rem;
}

.mini__num {
  font-family: 'Fraunces', serif;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.mini__num i {
  font-size: .62em;
  font-weight: 500;
  font-style: italic;
  color: var(--slate);
}

.mini__label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--slate);
  text-align: center;
}

.mini__sep {
  width: 1px;
  height: 1.8rem;
  background: var(--line);
  flex-shrink: 0;
}

/* ── Dock — índice das seções, flutuando na costura ──── */

.dock {
  position: relative;
  z-index: 5;
  width: min(100% - 2.5rem, 62rem);
  margin: -1.8rem auto 0;
  padding: .4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 16px 40px rgba(14, 33, 73, .16);
}

.dock__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem .35rem;
  border-radius: 100px;
  font-size: .82rem;
  white-space: nowrap;
  font-weight: 600;
  color: var(--navy);
  transition: transform .22s var(--ease), background .2s, box-shadow .22s var(--ease);
}

.dock__item svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
  flex-shrink: 0;
}

.dock__item:hover {
  transform: translateY(-2px);
  background: var(--ivory);
  box-shadow: 0 6px 16px rgba(19, 42, 94, .1);
}

/* ── Estrutura de seção (reutilizável) ───────────────── */

.section { padding: 6.5rem 0; }

.section-head {
  max-width: 560px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.section-head__rule {
  display: block;
  width: 2.25rem;
  height: 2px;
  background: var(--brand);
  margin: 0 auto 1rem;
}

.section-head h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 600;
  margin-bottom: 0.625rem;
}

/* sem subtítulo: título sozinho pede menos respiro abaixo */
.section-head:has(h2:last-child) {
  margin-bottom: 2.25rem;
}
.section-head:has(h2:last-child) h2 {
  margin-bottom: 0;
}

.section-head__sub {
  color: var(--slate);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* ── Seguros ─────────────────────────────────────────── */

.seguros { background: var(--ivory); }

.seguros__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}

.seguro-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}

.seguro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(19, 42, 94, .1);
  border-color: transparent;
}

.seguro-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--brand);
  margin-bottom: 1.375rem;
  flex-shrink: 0;
}

.seguro-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.seguro-card p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

.seguro-card--foto {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.seguro-card__bg {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center;
  filter: grayscale(25%) saturate(85%) brightness(0.8);
  z-index: -2;
  transition: transform .5s var(--ease);
}

.seguro-card--foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 33, 73, .95) 0%,
    rgba(14, 33, 73, .88) 40%,
    rgba(19, 42, 94, .68) 70%,
    rgba(19, 42, 94, .45) 100%
  );
  z-index: -1;
}

.seguro-card--foto:hover .seguro-card__bg {
  transform: scale(1.06);
}

.seguro-card--foto {
  border-color: var(--navy);
}

.seguro-card--foto .seguro-card__icon { color: var(--gold-2); }
.seguro-card--foto h3 { color: #fff; }
.seguro-card--foto p { color: rgba(255, 255, 255, .68); }

.seguro-card--destaque {
  background: var(--navy);
  border-color: var(--navy);
}

.seguro-card--destaque .seguro-card__icon { color: var(--gold-2); }
.seguro-card--destaque h3 { color: #fff; }
.seguro-card--destaque p { color: rgba(255, 255, 255, .58); }

.seguro-card--destaque:hover {
  box-shadow: 0 16px 40px rgba(14, 33, 73, .28);
}

.seguro-card--cta {
  background: transparent;
  border: 1.5px dashed var(--line);
}

.seguro-card--cta:hover {
  border-color: var(--brand);
  border-style: solid;
  box-shadow: none;
  transform: none;
}

.seguro-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand);
  width: fit-content;
}

.seguro-card__link svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform .22s var(--ease);
}

.seguro-card__link:hover svg { transform: translateX(3px); }

/* ── Benefícios ──────────────────────────────────────── */

.beneficios { background: var(--paper); }

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.beneficio {
  text-align: center;
  padding: 0 0.5rem;
}

.beneficio__icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--brand);
  margin: 0 auto 1.25rem;
}

.beneficio h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.beneficio p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Botão outline (reutilizável) ────────────────────── */

.btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--outline:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(34, 63, 145, .25);
}
.btn--outline svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform .22s var(--ease);
}
.btn--outline:hover svg { transform: translateX(3px); }

/* ── Sobre / A Fênix ─────────────────────────────────── */

.sobre { background: var(--ivory); }

.sobre__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.sobre__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sobre__title {
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.sobre__lead {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brand);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.sobre__text p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.125rem;
}

.sobre__nums {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.sobre__num { display: flex; flex-direction: column; }

.sobre__num-val {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.sobre__num-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate);
  margin-top: 0.5rem;
  max-width: 8rem;
}

.sobre__foto {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14, 33, 73, .18);
}

.sobre__foto img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}

.sobre__foto-mark {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  width: 5.5rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
  pointer-events: none;
}

/* ── Seguradoras parceiras ───────────────────────────── */

.parceiros { background: var(--paper); }

.parceiros__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem 1rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

.parceiro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem .5rem;
  border-radius: 6px;
}

/* todos os arquivos têm o mesmo canvas (420x170) e fundo já
   removido, então a largura uniforme basta para igualar o peso */
.parceiro img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: .55;
  transition:
    filter .35s var(--ease),
    opacity .35s var(--ease),
    transform .35s var(--ease);
}

.parceiro:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.07) translateY(-2px);
}

/* ao passar por um, os vizinhos recuam — destaca o escolhido */
.parceiros__grid:hover .parceiro:not(:hover) img { opacity: .34; }

.parceiros__obs {
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
  margin: 2.75rem 0 0;
}

.parceiros__obs strong { color: var(--brand); font-weight: 600; }

/* ── Depoimentos ─────────────────────────────────────── */

.depoimentos { background: var(--ivory); }

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  align-items: start;
}

.depoimento {
  position: relative;
  margin: 0;
  padding: 2.5rem 1.75rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.depoimento:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(19, 42, 94, .09);
}

.depoimento__aspas {
  position: absolute;
  top: .35rem;
  left: 1.4rem;
  font-family: 'Fraunces', serif;
  font-size: 3.75rem;
  line-height: 1;
  color: var(--gold);
  opacity: .28;
  user-select: none;
}

.depoimento__texto {
  margin: 0;
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.75;
  flex: 1;
}

.depoimento__autor {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.depoimento__nome {
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

.depoimento__mod {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gold);
}

/* card ainda sem cliente real — tratamento explícito de rascunho */
.depoimento--pendente {
  background: transparent;
  border-style: dashed;
}

.depoimento--pendente:hover {
  transform: none;
  box-shadow: none;
}

.depoimento--pendente .depoimento__texto,
.depoimento--pendente .depoimento__nome { opacity: .55; }

.depoimento--pendente .depoimento__nome { font-style: italic; }

.depoimento__selo {
  position: absolute;
  top: -.6rem;
  left: 1.5rem;
  padding: .18rem .6rem;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ── Dúvidas frequentes ──────────────────────────────────
   O painel abre animando grid-template-rows de 0fr para 1fr,
   que interpola até a altura natural do conteúdo — evita o
   max-height chutado, que corta resposta longa ou deixa
   folga morta quando a resposta é curta.                   */

.faq { background: var(--paper); }

.faq__lista {
  max-width: 46rem;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq__item { border-bottom: 1px solid var(--line); }

.faq__titulo { margin: 0; }

.faq__botao {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s;
}

.faq__botao:hover { color: var(--brand); }

.faq__botao:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 3px;
}

.faq__seta {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: .18rem;
  color: var(--gold);
  transition: transform .32s var(--ease);
}

.faq__item.is-open .faq__seta { transform: rotate(180deg); }
.faq__item.is-open .faq__botao { color: var(--brand); }

.faq__painel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}

.faq__item.is-open .faq__painel { grid-template-rows: 1fr; }

.faq__conteudo {
  overflow: hidden;
  /* tira do foco e dos leitores de tela quando fechado, mas só
     depois que a animação de recolher termina */
  visibility: hidden;
  transition: visibility 0s linear .35s;
}

.faq__item.is-open .faq__conteudo {
  visibility: visible;
  transition-delay: 0s;
}

.faq__conteudo p {
  margin: 0;
  padding: 0 3rem 1.4rem 0;
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.75;
}

.faq__saida {
  max-width: 46rem;
  margin: 2.25rem auto 0;
  text-align: center;
  color: var(--slate);
  font-size: .95rem;
}

.faq__saida a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-left: .3rem;
  font-weight: 600;
  color: var(--brand);
}

.faq__saida a svg {
  width: 1rem;
  height: 1rem;
  transition: transform .22s var(--ease);
}

.faq__saida a:hover svg { transform: translateX(3px); }

/* ── Contato ─────────────────────────────────────────── */

.contato { background: var(--ivory); }

.corretores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  max-width: 68rem;
  margin: 0 auto 3.5rem;
}

.corretor {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.corretor:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(19, 42, 94, .09);
}

.corretor__foto {
  width: 6.5rem;
  height: 6.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ivory-2);
}

/* card do contato comercial: sem foto de pessoa — o avatar é a
   própria marca, logo branca centrada em fundo azul */
.corretor__foto--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 1.1rem;
}

.corretor__foto--logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.corretor__dados {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
}

.corretor__nome {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .1rem;
}

.corretor__cargo {
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gold);
  margin-bottom: .5rem;
}

.corretor__email {
  font-size: .8rem;
  color: var(--slate);
  margin-bottom: .9rem;
  overflow-wrap: anywhere;
  transition: color .2s;
}

.corretor__email:hover { color: var(--brand); }

.corretor__email--nowrap { white-space: nowrap; }

.corretor .btn--wpp {
  padding: .6rem 1rem;
  font-size: .85rem;
}

/* ── bloco do escritório ── */

.escritorio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.escritorio__foto {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(14, 33, 73, .16);
}

.escritorio__foto img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.escritorio__olho {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.escritorio__dados h3 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 600;
  margin-bottom: .75rem;
}

.escritorio__dados > p {
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.escritorio__lista {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.escritorio__lista li {
  display: flex;
  gap: .75rem;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--ink);
}

.escritorio__lista svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--brand);
}

.escritorio__lista a {
  color: var(--brand);
  transition: color .2s;
}
.escritorio__lista a:hover { color: var(--brand-700); }

.escritorio__rota { align-self: flex-start; }

/* o mapa ocupa as duas colunas, abaixo da foto e dos dados */
.escritorio__mapa {
  grid-column: 1 / -1;
  margin-top: .5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(14, 33, 73, .1);
}

.escritorio__mapa iframe {
  display: block;
  width: 100%;
  height: clamp(240px, 30vw, 340px);
  border: 0;
  filter: grayscale(16%);
}

/* ── Footer ──────────────────────────────────────────── */

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .55);
}

.footer__topo {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem 2.5rem;
  padding: 4.5rem 0 3.5rem;
}

.footer__marca img {
  width: 8.5rem;
  height: auto;
  margin-bottom: 1.25rem;
}

.footer__marca p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 22rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
}

.footer__col h3 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: .45rem;
  font-family: 'Archivo', sans-serif;
}

.footer__col a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .58);
  transition: color .18s;
}

.footer__col a:hover { color: #fff; }

.footer__col address {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .45);
  margin-top: .3rem;
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 1.25rem 0;
}

.footer__base-linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
}

.footer__base-linha p { margin: 0; color: rgba(255, 255, 255, .38); }

.footer__privacidade {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Archivo', sans-serif;
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, .2);
  transition: color .18s, text-decoration-color .18s;
}

.footer__privacidade:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, .5);
}

/* ── Modal da política ───────────────────────────────────
   Usa <dialog> nativo: o showModal() já entrega prisão de
   foco, fechamento por Esc, fundo inerte e devolução do foco
   ao gatilho — sem precisar reimplementar nada disso.      */

.modal {
  width: min(100% - 2rem, 42rem);
  max-height: min(84svh, 46rem);
  padding: 0;
  border: none;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(14, 33, 73, .35);
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(9, 20, 46, .62);
  backdrop-filter: blur(3px);
}

.modal[open] {
  display: flex;
  flex-direction: column;
  animation: modal-entra .28s var(--ease);
}

@keyframes modal-entra {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.modal__cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem 1.1rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.modal__cabecalho h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.modal__fechar {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--slate);
  cursor: pointer;
  transition: background .18s, color .18s;
}

.modal__fechar:hover { background: var(--ivory-2); color: var(--ink); }
.modal__fechar svg { width: 1rem; height: 1rem; }

.modal__corpo {
  overflow-y: auto;
  padding: 1.5rem 1.75rem 2rem;
}

.modal__corpo p {
  margin: 0 0 1rem;
  color: var(--slate);
  font-size: .92rem;
  line-height: 1.75;
}

.modal__corpo h3 {
  font-size: .95rem;
  font-weight: 600;
  margin: 1.5rem 0 .5rem;
}

.modal__corpo a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

/* ── Botão flutuante de WhatsApp ─────────────────────── */

.wpp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0;
  height: 3.5rem;
  padding: 0 1.05rem;
  background: #1fa855;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 8px 26px rgba(16, 92, 47, .38);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .2s;
}

.wpp:hover {
  background: #178f47;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 92, 47, .48);
}

.wpp svg { width: 1.6rem; height: 1.6rem; flex-shrink: 0; }

/* o rótulo só se revela no hover, em telas com ponteiro fino */
.wpp__rotulo {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 600;
  transition: max-width .34s var(--ease), margin-left .34s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .wpp:hover .wpp__rotulo,
  .wpp:focus-visible .wpp__rotulo {
    max-width: 9rem;
    margin-left: .6rem;
  }
}

/* ── Mobile ≤ 680px ──────────────────────────────────── */

@media (max-width: 680px) {
  :root { --header-h: 56px; }

  /* mais largura util: a margem lateral encolhe */
  .wrap { width: min(100% - 1.75rem, 76rem); }

  .section { padding: 3rem 0; }

  .section-head { margin-bottom: 1.75rem; max-width: 30rem; }
  .section-head h2 { font-size: 1.375rem; margin-bottom: .4rem; }
  .section-head__sub { font-size: .85rem; line-height: 1.5; }
  .section-head:has(h2:last-child) { margin-bottom: 1.5rem; }

  /* ---- header ---- */
  .header__row { position: relative; }
  .hamburger { display: flex; }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.125rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }

  .header__nav.is-open { display: flex; }

  .nav-link { padding: 0.7rem 0.25rem; font-size: 0.9rem; border-radius: 4px; }
  .nav-link::after { display: none; }

  .btn-cotacao {
    margin: 0.75rem 0 0;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
  }

  /* ---- hero ----
     O rodape precisa ser maior que a faixa clara (que e absoluta),
     senao a curva sobe por cima dos botoes. */
  .hero { padding: calc(var(--header-h) + 1rem) 1rem 8.75rem; }

  .hero__mark { width: 100%; }
  .fenix__ink path { stroke-width: 1.7; }

  .hero__content { margin-top: -1rem; }
  .hero__eyebrow { font-size: .6rem; letter-spacing: .12em; margin-bottom: .7rem; }
  .hero__headline { font-size: 1.85rem; line-height: 1.1; margin-bottom: .8rem; }
  .hero__sub { font-size: .875rem; line-height: 1.6; margin-bottom: 1.4rem; }

  /* botoes lado a lado, como no desktop */
  .hero__ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: .5rem;
  }

  .hero__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: .62rem .5rem;
    font-size: .78rem;
    gap: .35rem;
  }

  .hero__ctas .btn__icon { width: .95rem; height: .95rem; }

  /* ---- faixa de estatisticas: as tres numa linha so ----
     Empilhadas, a faixa ficava alta demais e a curva subia
     por cima do conteudo do hero. */
  .hero__base-curve { height: 22px; }

  .hero__mini {
    flex-wrap: nowrap;
    /* alinhados pelo topo: com rotulos de 1 e 2 linhas, o centro
       deixaria os numeros em alturas diferentes */
    align-items: flex-start;
    gap: .4rem;
    padding: .6rem .5rem 2.1rem;
  }

  .mini { padding: .2rem .1rem; gap: .18rem; flex: 1 1 0; min-width: 0; }
  .mini__num { font-size: 1.05rem; }
  .mini__num i { font-size: .58em; }
  .mini__label { font-size: .53rem; letter-spacing: .03em; line-height: 1.25; }
  .mini__sep { height: 1.75rem; display: block; margin-top: .2rem; }

  /* ---- dock ---- */
  .dock {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 16px;
    margin-top: -1.4rem;
    padding: .3rem;
    gap: .1rem;
  }

  .dock__item { font-size: .68rem; padding: .5rem .2rem; border-radius: 10px; gap: .3rem; }
  .dock__item svg { width: .85rem; height: .85rem; }

  /* ---- modalidades: duas por linha ---- */
  .seguros__grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }

  .seguro-card { padding: 1.15rem .9rem; }
  .seguro-card__icon { width: 1.9rem; height: 1.9rem; margin-bottom: .8rem; }
  .seguro-card h3 { font-size: .9rem; margin-bottom: .35rem; }
  .seguro-card p { font-size: .76rem; line-height: 1.5; }
  .seguro-card__link { font-size: .78rem; margin-top: .8rem; }

  /* ---- beneficios ---- */
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem .9rem; }
  .beneficio { padding: 0; }
  .beneficio__icon { width: 2rem; height: 2rem; margin-bottom: .7rem; }
  .beneficio h3 { font-size: .875rem; margin-bottom: .3rem; }
  .beneficio p { font-size: .76rem; line-height: 1.5; }

  /* ---- sobre ---- */
  .sobre__top { grid-template-columns: 1fr; gap: 1.75rem; }
  .sobre__foto { order: -1; }
  .sobre__title { font-size: 1.5rem; }
  .sobre__lead { font-size: 1rem; margin-bottom: 1rem; }
  .sobre__text p { font-size: .875rem; line-height: 1.65; margin-bottom: .8rem; }
  .sobre__nums { gap: 1rem; justify-content: space-between; margin-top: 1.4rem; padding-top: 1.2rem; }
  .sobre__num-val { font-size: 1.6rem; }
  .sobre__num-label { font-size: .58rem; max-width: 6rem; }

  /* ---- parceiros ---- */
  .parceiros__grid { grid-template-columns: repeat(3, 1fr); gap: .2rem .4rem; }
  .parceiro { padding: .7rem .35rem; }
  .parceiros__obs { font-size: .82rem; margin-top: 1.5rem; }

  /* ---- depoimentos ----
     Coluna unica de proposito: em duas colunas a linha teria
     cerca de 20 caracteres e o relato viraria uma tira ilegivel. */
  .depoimentos__grid { grid-template-columns: 1fr; gap: .75rem; }
  .depoimento { padding: 1.9rem 1.1rem 1.2rem; }
  .depoimento__aspas { font-size: 2.75rem; top: .2rem; left: 1rem; }
  .depoimento__texto { font-size: .82rem; line-height: 1.6; }
  .depoimento__autor { margin-top: 1rem; padding-top: .8rem; }
  .depoimento__nome { font-size: .95rem; }
  .depoimento__mod { font-size: .6rem; }

  /* ---- contato: corretores lado a lado ---- */
  .corretores { grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-bottom: 2.25rem; }

  /* Marcio e Gustavo dividem a primeira linha; o contato comercial
     (3º card, sem par) ocupa a linha de baixo inteira */
  .corretor--comercial { grid-column: 1 / -1; }

  .corretor {
    flex-direction: column;
    text-align: center;
    gap: .7rem;
    padding: 1.1rem .7rem;
  }

  .corretor__foto { width: 4.25rem; height: 4.25rem; border-width: 2px; }
  .corretor__foto--logo { padding: .7rem; }
  .corretor__dados { align-items: center; width: 100%; }
  .corretor__nome { font-size: 1rem; }
  .corretor__cargo { font-size: .55rem; letter-spacing: .06em; margin-bottom: .35rem; }
  .corretor__email { font-size: .72rem; margin-bottom: .7rem; line-height: 1.35; }

  .corretor .btn--wpp { padding: .5rem .35rem; font-size: .7rem; gap: .25rem; }
  .corretor .btn--wpp .btn__icon { width: .85rem; height: .85rem; }

  /* ---- escritorio ---- */
  .escritorio { grid-template-columns: 1fr; gap: 1.4rem; padding-top: 2rem; }
  .escritorio__dados h3 { font-size: 1.25rem; }
  .escritorio__dados > p { font-size: .85rem; margin-bottom: 1.1rem; }
  .escritorio__lista { gap: .7rem; margin-bottom: 1.25rem; }
  .escritorio__lista li { font-size: .82rem; }
  .escritorio__mapa iframe { height: 220px; }

  /* ---- duvidas ---- */
  .faq__botao { font-size: .9rem; padding: .95rem 0; gap: .75rem; }
  .faq__conteudo p { font-size: .82rem; padding: 0 .5rem 1.1rem 0; line-height: 1.6; }
  .faq__saida { font-size: .85rem; margin-top: 1.5rem; }

  /* ---- rodape ---- */
  .footer__topo {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
    padding: 2.5rem 0 2rem;
  }

  .footer__marca { grid-column: 1 / -1; }
  .footer__marca img { width: 6.5rem; margin-bottom: .9rem; }
  .footer__marca p { font-size: .8rem; }
  .footer__col h3 { font-size: .64rem; }
  .footer__col a, .footer__col address { font-size: .78rem; }

  .footer__base-linha {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    font-size: .72rem;
  }

  /* ---- flutuante e modal ---- */
  .wpp { right: .9rem; bottom: .9rem; height: 3rem; padding: 0 .85rem; }
  .wpp svg { width: 1.4rem; height: 1.4rem; }

  .modal__cabecalho { padding: 1.1rem 1.1rem .8rem; }
  .modal__cabecalho h2 { font-size: 1.1rem; }
  .modal__corpo { padding: 1.1rem 1.1rem 1.5rem; }
  .modal__corpo p { font-size: .85rem; }
}

/* -- celulares estreitos -------------------------------- */

@media (max-width: 400px) {
  .hero__headline { font-size: 1.65rem; }
  .hero__ctas .btn { font-size: .72rem; padding: .58rem .35rem; }
  .mini__label { font-size: .5rem; }
  .dock__item { font-size: .62rem; }
  .dock__item svg { display: none; }
  .corretor .btn--wpp { font-size: .64rem; }
  .corretor__email { font-size: .66rem; }
}

/* ── Tablet ≤ 960px ──────────────────────────────────── */

@media (max-width: 960px) and (min-width: 681px) {
  .seguros__grid { grid-template-columns: repeat(2, 1fr); }

  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }


  .depoimentos__grid { grid-template-columns: 1fr; max-width: 42rem; margin-inline: auto; }

  .footer__topo { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__marca { grid-column: 1 / -1; }

  .corretores { max-width: 42rem; }

  .parceiros__grid { grid-template-columns: repeat(4, 1fr); }

  .dock {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 22px;
  }
  .dock__item { border-radius: 14px; }
}
