/* ============================================================
   PAIXÃO LOPES ADVOGADOS ASSOCIADOS
   Editorial Heráldico Jurídico — sistema visual
   ============================================================ */

:root {
  /* — Cores da marca (derivadas da logo) — */
  --bordo:        #6E1423;
  --bordo-escuro: #3D0A14;
  --bordo-2:      #561019;
  --ouro:         #C9A227;
  --ouro-claro:   #E8D6A0;
  --champagne:    #EFE3BF;
  --marfim:       #F5F1E8;
  --marfim-2:     #FBF8F1;
  --grafite:      #2A2A2A;
  --grafite-50:   #6b6760;

  /* — Tipografia — */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* — Espaçamento — */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 40px;
  --sp-5: 64px;
  --sp-6: 96px;
  --sp-7: 140px;

  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 72px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 2px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--sans);
  background: var(--marfim);
  color: var(--grafite);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

/* img { display: block; max-width: 100%; } */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   HELPERS
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ouro);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--ouro);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }

.section-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.06;
  color: var(--bordo-escuro);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--bordo); }

/* gold hairline divider */
.rule { height: 1px; background: linear-gradient(90deg, var(--ouro), transparent); width: 100%; }

/* reveal animation base — otimizado para evitar CLS */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Hero LCP: elementos visíveis imediatamente sem esperar JS */
.hero .hero__kicker,
.hero h1,
.hero .hero__sub,
.hero .hero__actions { opacity: 1; transform: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 17px 30px;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--bordo); color: var(--marfim); box-shadow: 0 10px 28px -16px rgba(110,20,35,.7); }
.btn-primary:hover { background: var(--bordo-escuro); transform: translateY(-3px); box-shadow: 0 18px 38px -16px rgba(110,20,35,.8); }
.btn-gold { background: var(--ouro); color: var(--bordo-escuro); }
.btn-gold:hover { background: var(--ouro-claro); transform: translateY(-3px); }
.btn-outline { border: 1px solid currentColor; color: var(--bordo-escuro); }
.btn-outline:hover { background: var(--bordo-escuro); color: var(--marfim); border-color: var(--bordo-escuro); transform: translateY(-3px); }
.btn-ghost-light { border: 1px solid rgba(245,241,232,.4); color: var(--marfim); }
.btn-ghost-light:hover { background: var(--marfim); color: var(--bordo-escuro); transform: translateY(-3px); }
.btn-wa { background: #1faa55; color: #fff; }
.btn-wa:hover { background: #17924a; transform: translateY(-3px); }

/* ============================================================
   NAVBAR — SUPER PREMIUM (Floating Pill Format)
   ============================================================ */

/* Wrapper que segura a navbar flutuante */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--gut) 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: padding .6s var(--ease);
}
.nav-wrapper.scrolled {
  padding: 10px var(--gut) 0;
}

/* A navbar em si — formato floating pill */
.nav {
  position: relative;
  inset: auto;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 14px 32px;
  border-radius: 100px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  transition: background .6s var(--ease), padding .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease), max-width .6s var(--ease), gap .6s var(--ease);
  border: 1px solid transparent;
  background: transparent;
}

/* Estado inicial — glassmorphism sutil sobre o hero */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(245,241,232,.65) 0%, rgba(245,241,232,.40) 100%);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(201,162,39,.15);
  box-shadow: 0 4px 24px -8px rgba(61,10,20,.12), 0 1px 0 rgba(255,255,255,.3) inset;
  transition: opacity .6s var(--ease), background .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
}

/* Estado scrolled — pill compacto e escuro */
.nav.scrolled {
  padding: 14px 32px;
  max-width: 900px;
  gap: 40px;
}
.nav.scrolled::before {
  background: rgba(61,10,20,.88);
  border-color: rgba(201,162,39,.25);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.5), 0 1px 0 rgba(201,162,39,.1) inset;
}

/* Brand — com brilho sutil no hover */
.nav__brand { display: flex; align-items: center; gap: 12px; z-index: 2; position: relative; flex-shrink: 0; }
.nav__brand::after {
  content: "";
  position: absolute;
  inset: -8px -14px;
  border-radius: 50px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,.10), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.nav__brand:hover::after { opacity: 1; }
.nav__brand img { width: 38px; height: 38px; transition: width .5s var(--ease), height .5s var(--ease), transform .5s var(--ease); filter: drop-shadow(0 2px 6px rgba(61,10,20,.15)); }
.nav.scrolled .nav__brand img { width: 32px; height: 32px; }
.nav__brand:hover img { transform: scale(1.08) rotate(-2deg); }
.nav__brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-txt b { font-family: var(--serif); font-size: 16px; font-weight: 600; letter-spacing: .02em; color: var(--bordo-escuro); transition: color .5s var(--ease); }
.nav__brand-txt span { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--grafite-50); transition: color .5s var(--ease); }
.nav.scrolled .nav__brand-txt b { color: var(--marfim); }
.nav.scrolled .nav__brand-txt span { color: var(--ouro-claro); }

/* Links — com underline animado de ouro e glow sutil */
.nav__links { display: flex; align-items: center; gap: 28px; flex-shrink: 0; }
.nav__links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--bordo-escuro);
  position: relative;
  padding: 6px 0;
  transition: color .4s var(--ease), transform .4s var(--ease);
  white-space: nowrap;
}
.nav.scrolled .nav__links a { color: rgba(245,241,232,.85); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--ouro), transparent);
  transition: width .5s var(--ease), left .5s var(--ease);
  border-radius: 2px;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; left: 0; }
.nav__links a:hover { color: var(--ouro); transform: translateY(-1px); }
.nav.scrolled .nav__links a:hover { color: var(--ouro); }
.nav__links a:active { transform: translateY(0) scale(0.98); }

/* Burger — animação premium */
.nav__burger { display: none; flex-direction: column; gap: 5px; z-index: 2; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; transition: background .3s var(--ease); flex-shrink: 0; }
.nav__burger:hover { background: rgba(110,20,35,.06); }
.nav.scrolled .nav__burger:hover { background: rgba(201,162,39,.1); }
.nav__burger span { width: 22px; height: 2px; background: var(--bordo-escuro); transition: all .4s var(--ease-bounce); border-radius: 1px; }
.nav.scrolled .nav__burger span { background: var(--marfim); }
.nav.menu-open .nav__burger span { background: var(--marfim); }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navbar entrance animation */
.nav {
  animation: navSlideDown .8s var(--ease) both;
}
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Stagger nos links */
.nav__links a:nth-child(1) { animation: navLinkIn .6s var(--ease) .2s both; }
.nav__links a:nth-child(2) { animation: navLinkIn .6s var(--ease) .28s both; }
.nav__links a:nth-child(3) { animation: navLinkIn .6s var(--ease) .36s both; }
.nav__links a:nth-child(4) { animation: navLinkIn .6s var(--ease) .44s both; }
.nav__links a:nth-child(5) { animation: navLinkIn .6s var(--ease) .52s both; }
.nav__links a:nth-child(6) { animation: navLinkIn .6s var(--ease) .6s both; }
@keyframes navLinkIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav__brand { animation: navLinkIn .6s var(--ease) .1s both; }

/* ============================================================
   HERO — SUPER PREMIUM
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px calc(var(--gut) + 20px) 120px calc(var(--gut) + 80px);
  background: var(--marfim);
  overflow: hidden;
}

/* ===== Camadas de fundo ===== */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Gradiente principal — glow dourado sutil */
.hero__bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 85% 10%, rgba(201,162,39,.14), transparent 65%),
    radial-gradient(800px 600px at 15% 80%, rgba(110,20,35,.06), transparent 55%),
    radial-gradient(600px 500px at 50% 50%, rgba(201,162,39,.05), transparent 50%);
}

/* Textura de ruído sutil */
.hero__bg-noise {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
}

/* Orbes flutuantes — efeito de profundidade */
.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}
.hero__bg-orb.orb-1 {
  width: 500px; height: 500px;
  background: rgba(201,162,39,.08);
  top: -10%; right: 5%;
  animation-delay: 0s;
}
.hero__bg-orb.orb-2 {
  width: 350px; height: 350px;
  background: rgba(110,20,35,.06);
  bottom: 10%; left: -5%;
  animation-delay: -7s;
  animation-duration: 25s;
}
.hero__bg-orb.orb-3 {
  width: 280px; height: 280px;
  background: rgba(201,162,39,.05);
  top: 40%; right: 30%;
  animation-delay: -14s;
  animation-duration: 18s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(15px, 15px) scale(1.02); }
}

/* ===== Partículas douradas ===== */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--ouro);
  border-radius: 50%;
  opacity: 0;
  animation: particle 12s ease-in-out infinite;
  box-shadow: 0 0 6px 1px rgba(201,162,39,.4);
}
.hero__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 10s; }
.hero__particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 14s; width: 2px; height: 2px; }
.hero__particles span:nth-child(3) { left: 45%; top: 15%; animation-delay: 3s; animation-duration: 11s; }
.hero__particles span:nth-child(4) { left: 65%; top: 70%; animation-delay: 4.5s; animation-duration: 13s; width: 2px; height: 2px; }
.hero__particles span:nth-child(5) { left: 80%; top: 30%; animation-delay: 2s; animation-duration: 15s; }
.hero__particles span:nth-child(6) { left: 15%; top: 80%; animation-delay: 5s; animation-duration: 12s; width: 2px; height: 2px; }
.hero__particles span:nth-child(7) { left: 55%; top: 40%; animation-delay: 6.5s; animation-duration: 10s; }
.hero__particles span:nth-child(8) { left: 90%; top: 55%; animation-delay: 3.5s; animation-duration: 14s; width: 2px; height: 2px; }
.hero__particles span:nth-child(9) { left: 35%; top: 85%; animation-delay: 7s; animation-duration: 11s; }
.hero__particles span:nth-child(10) { left: 75%; top: 10%; animation-delay: 8.5s; animation-duration: 13s; width: 2px; height: 2px; }
@keyframes particle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: .6; transform: translateY(-10px) scale(1); }
  50% { opacity: .3; transform: translateY(-60px) scale(.8); }
  90% { opacity: .6; transform: translateY(-100px) scale(1); }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

/* ===== Selo/Brasão ===== */
.hero__seal {
  position: absolute;
  right: clamp(30px, 8vw, 100px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 30vw, 400px);
  aspect-ratio: 1;
  opacity: .95;
  pointer-events: none;
  z-index: 2;
  animation: sealFloat 6s ease-in-out infinite;
}
@keyframes sealFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-52%) translateX(5px); }
}
.hero__seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 30px 60px rgba(61,10,20,.3));
  animation: sealPulse 4s ease-in-out infinite;
}
@keyframes sealPulse {
  0%, 100% { filter: drop-shadow(0 30px 60px rgba(61,10,20,.3)); }
  50% { filter: drop-shadow(0 40px 70px rgba(61,10,20,.4)); }
}

/* Anéis orbitais */
.hero__seal-ring {
  position: absolute;
  inset: -8%;
  border: 1.5px solid rgba(201,162,39,.35);
  border-radius: 50%;
  animation: ringSpin 20s linear infinite;
}
.hero__seal-ring.r2 {
  inset: -16%;
  border-color: rgba(201,162,39,.18);
  border-width: 1px;
  animation-duration: 30s;
  animation-direction: reverse;
}
.hero__seal-ring.r3 {
  inset: -24%;
  border-color: rgba(201,162,39,.08);
  border-width: .5px;
  animation-duration: 40s;
}
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Glow atrás do selo */
.hero__seal-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(201,162,39,.12), transparent 60%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}
@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ===== Conteúdo principal ===== */
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

/* Kicker/Eyebrow com linha animada */
.hero__kicker {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s var(--ease) .1s, transform .7s var(--ease) .1s;
}
.hero.loaded .hero__kicker {
  opacity: 1;
  transform: translateY(0);
}
.hero__kicker::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--ouro);
  display: inline-block;
  animation: lineGrow .8s var(--ease) .5s forwards;
}
@keyframes lineGrow {
  to { width: 34px; }
}

/* Título com animação de revelação */
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 8rem);
  line-height: 1.02;
  color: var(--bordo-escuro);
  letter-spacing: -0.025em;
  font-weight: 500;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease);
}
.hero.loaded h1 .line > span {
  transform: translateY(0);
}
.hero h1 .line:nth-child(1) > span {
  transition-delay: .15s;
}
.hero h1 .line:nth-child(2) > span {
  transition-delay: .3s;
}
.hero h1 em {
  font-style: italic;
  color: var(--bordo);
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ouro), transparent);
  opacity: .4;
  border-radius: 2px;
}

/* Subtítulo */
.hero__sub {
  max-width: 520px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--grafite-50);
  opacity: 0;
  transform: translateY(20px);
  transition: all .9s var(--ease) .55s;
}
.hero.loaded .hero__sub {
  opacity: 1;
  transform: none;
}

/* Botões com animação */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .9s var(--ease) .7s;
}
.hero.loaded .hero__actions {
  opacity: 1;
  transform: none;
}

/* ===== Meta info inferior ===== */
.hero__meta {
  position: absolute;
  left: var(--gut);
  right: var(--gut);
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 1.2s var(--ease) 1s;
}
.hero.loaded .hero__meta {
  opacity: 1;
}

/* Rating com estrelas animadas */
.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__rating .stars {
  color: var(--ouro);
  letter-spacing: 2px;
  font-size: 14px;
  display: inline-flex;
}
.hero__rating .stars::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ouro);
  clip-path: inset(0 100% 0 0);
  animation: starFill 1.5s var(--ease) 1.2s forwards;
}
@keyframes starFill {
  to { clip-path: inset(0 0 0 0); }
}
.hero__rating small {
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--grafite-50);
}
.hero__rating b {
  color: var(--bordo-escuro);
  font-weight: 600;
}

/* Divisor vertical */
.hero__divider-v {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--ouro), transparent);
  opacity: .5;
}

/* Scroll indicator premium */
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grafite-50);
  margin-left: auto;
}
.hero__scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--ouro), transparent);
  display: block;
  transform-origin: top;
  animation: scrolldown 2.2s var(--ease) infinite;
  position: relative;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--ouro);
  border-radius: 50%;
  animation: scrollDot 2.2s var(--ease) infinite;
}
@keyframes scrolldown {
  0% { transform: scaleY(0); }
  40% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes scrollDot {
  0%, 40% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  50% { opacity: 1; transform: translateX(-50%) translateY(0); }
  90%, 100% { opacity: 0; transform: translateX(-50%) translateY(5px); }
}



/* ============================================================
   IMPACTO
   ============================================================ */
/* ============================================================
   IMPACTO — EDITORIAL PREMIUM
   ============================================================ */
.impacto { 
  background: var(--bordo-2); 
  color: var(--marfim); 
  padding: clamp(90px, 12vw, 160px) 0; 
  position: relative; 
  overflow: hidden; 
}
.impacto::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: 
    radial-gradient(1000px 600px at 10% 20%, rgba(201,162,39,.12), transparent 60%),
    radial-gradient(800px 500px at 90% 80%, rgba(201,162,39,.08), transparent 60%); 
  pointer-events: none;
}
.impacto__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.impacto__big-quote { 
  position: absolute; 
  top: -.15em; 
  left: -1vw; 
  font-family: var(--serif); 
  font-size: 28vw; 
  line-height: 1; 
  color: rgba(201,162,39,.04); 
  pointer-events: none; 
}
.impacto .wrap { 
  position: relative; 
  z-index: 2;
}
.impacto__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.impacto__content {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.impacto h2 { 
  font-size: clamp(2.2rem, 4.4vw, 3.8rem); 
  line-height: 1.1; 
  color: var(--marfim); 
  text-wrap: balance; 
  letter-spacing: -0.01em;
}
.impacto h2 em { 
  color: var(--ouro-claro); 
  font-style: italic; 
}
.impacto__lead { 
  font-size: clamp(16.5px, 1.6vw, 18.5px); 
  line-height: 1.6;
  color: rgba(245,241,232,.85); 
  text-wrap: pretty;
}

/* Timeline/Passos da Direita — Barras horizontais premium sob o texto */
.impacto__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.impacto-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
  transition: transform 0.4s var(--ease), padding 0.4s var(--ease);
}
/* Linha de fundo cinza sutil */
.impacto-step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.4s var(--ease);
}
/* Barra de destaque dourada deslizante (efeito premium) */
.impacto-step::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ouro), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.impacto-step:hover::before {
  transform: scaleX(1);
}
.impacto-step:hover {
  transform: translateY(-4px);
}
.impacto-step__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.impacto-step__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--marfim);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.impacto-step__title::before {
  content: "✦";
  color: var(--ouro);
  font-size: 0.85em;
  font-style: normal;
  display: inline-block;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.impacto-step:hover .impacto-step__title::before {
  transform: rotate(45deg) scale(1.1);
  color: var(--ouro-claro);
}
.impacto-step__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.72);
}

/* Destaque no passo 2 - Quebra de padrão / assimetria com fundo dourado ultra-sutil e barra ativa */
.impacto-step.impact-step--highlight {
  background: rgba(201, 162, 39, 0.03);
  padding: 28px 24px;
  border-radius: 4px;
}
.impacto-step.impact-step--highlight::after {
  left: 24px;
  right: 24px;
  background: rgba(201, 162, 39, 0.15);
}
.impacto-step.impact-step--highlight::before {
  left: 24px;
  width: calc(100% - 48px);
  transform: scaleX(0.4);
}
.impacto-step.impact-step--highlight:hover::before {
  transform: scaleX(1);
}
.impacto-step.impact-step--highlight:hover {
  background: rgba(201, 162, 39, 0.05);
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .impacto__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .impacto__content {
    position: static;
  }
}

/* ============================================================
   SERVIÇOS — Editorial Premium
   ============================================================ */
.servicos { 
  padding: clamp(90px, 12vw, 160px) 0; 
  background: var(--marfim); 
  position: relative;
}
.servicos__head { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  gap: 40px; 
  flex-wrap: wrap; 
  margin-bottom: 30px; 
}
.servicos__head p { 
  max-width: 420px; 
  color: var(--grafite-50); 
}

/* Tabs de Filtro (Menu Editorial) */
.svc-tabs { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 28px; 
  margin: 40px 0 16px; 
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  padding-bottom: 16px;
}
.svc-tab {
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: .14em; 
  text-transform: uppercase;
  padding: 8px 0; 
  border: none;
  background: none;
  border-radius: 0;
  color: var(--grafite-50); 
  position: relative;
  transition: color .35s var(--ease);
}
.svc-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  height: 2px;
  width: 0;
  background: var(--bordo);
  transition: width .4s var(--ease), left .4s var(--ease);
}
.svc-tab:hover { 
  color: var(--bordo); 
}
.svc-tab.active { 
  color: var(--bordo); 
}
.svc-tab.active::after {
  width: 100%;
  left: 0;
}

/* Lista de Serviços */
.svc-list { 
  border-top: 1px solid rgba(42, 42, 42, 0.08); 
}
.svc-row {
  display: grid; 
  grid-template-columns: 80px 1fr 180px 40px; 
  align-items: center; 
  gap: 32px;
  padding: 36px 16px; 
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  position: relative; 
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
/* Efeito de Overlay de Luz Sutil no Hover */
.svc-row::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.02) 0%, rgba(201, 162, 39, 0.05) 50%, transparent 100%);
  opacity: 0; 
  transition: opacity .4s var(--ease); 
  z-index: 1;
  pointer-events: none;
}
.svc-row:hover::before { 
  opacity: 1; 
}
.svc-row:hover { 
  padding-left: 28px;
  background: rgba(255, 255, 255, 0.35);
}
.svc-row[hidden] { 
  display: none; 
}
.svc-row.is-hiding { 
  opacity: 0; 
  transform: translateY(12px); 
  pointer-events: none; 
}

/* Elementos da Linha */
.svc-num { 
  font-family: var(--serif); 
  font-size: clamp(1.6rem, 3vw, 2.2rem); 
  line-height: 1; 
  color: var(--ouro); 
  font-style: italic; 
  transition: all .4s var(--ease);
  position: relative;
  z-index: 2;
}
.svc-row:hover .svc-num { 
  color: var(--bordo);
  transform: scale(1.06) translateX(-4px);
}
.svc-main {
  position: relative;
  z-index: 2;
}
.svc-main h3 { 
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem); 
  font-weight: 500;
  color: var(--bordo-escuro); 
  transition: color 0.4s var(--ease);
}
.svc-row:hover .svc-main h3 {
  color: var(--bordo);
}
.svc-main p { 
  font-size: 14.5px; 
  line-height: 1.55;
  color: var(--grafite-50); 
  margin-top: 8px; 
  max-width: 620px; 
  transition: color 0.4s var(--ease);
}
.svc-row:hover .svc-main p {
  color: var(--grafite);
}
.svc-area { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .14em; 
  text-transform: uppercase; 
  color: var(--grafite-50); 
  white-space: nowrap; 
  position: relative;
  z-index: 2;
  transition: color 0.4s var(--ease);
}
.svc-row:hover .svc-area {
  color: var(--bordo);
}
.svc-arrow { 
  color: var(--ouro); 
  opacity: 0.4; 
  transform: scale(0.95);
  transition: all .4s var(--ease); 
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.svc-row:hover .svc-arrow { 
  opacity: 1; 
  transform: scale(1.08) rotate(45deg);
  color: var(--bordo);
}

.svc-more-container {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  padding-bottom: 12px;
}
.svc-more-container .btn {
  font-size: 13px;
  letter-spacing: .08em;
  padding: 14px 28px;
}

.servicos__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 50px; padding-top: 36px;
  border-top: 1px solid rgba(201,162,39,.35);
}
.servicos__foot p { max-width: 420px; color: var(--grafite-50); font-size: 15.5px; }
.servicos__foot .btn { flex: none; }

/* ============================================================
   CONFIANÇA — Editorial Premium
   ============================================================ */
.confianca { 
  background: var(--marfim-2); 
  padding: clamp(90px, 12vw, 160px) 0; 
  overflow: hidden; 
  position: relative;
}
.confianca__grid { 
  display: grid; 
  grid-template-columns: 1.15fr 0.85fr; 
  gap: clamp(40px, 6vw, 80px); 
  align-items: center; 
}
/* Grid Horizontal Editorial do Manifesto */
.confianca__text h2 { 
  margin: 18px 0 22px; 
}
.confianca__lead { 
  color: var(--grafite); 
  max-width: 580px; 
  font-size: 17.5px;
  line-height: 1.6;
}
.confianca__manifesto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
  margin-bottom: 12px;
  border-top: 1px solid rgba(42, 42, 42, 0.08);
  padding-top: 36px;
}
.manifesto-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
/* Linhas verticais separadoras discretas no desktop */
.manifesto-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(42, 42, 42, 0.08);
}
.manifesto-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--bordo-escuro);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.manifesto-text {
  font-size: 14px;
  color: var(--grafite-50);
  line-height: 1.6;
}

/* Retrato Editorial de Prestígio */
.confianca__media {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.ph-portrait-block {
  width: 100%;
  background: var(--marfim-2);
  border: 1px solid rgba(201, 162, 39, 0.3); /* Filete dourado ultra fino de contorno */
  padding: 12px; /* Passe-partout clássico discreto */
  box-shadow: 0 30px 70px -20px rgba(61, 10, 20, 0.15);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  border-radius: 2px;
}
.ph-portrait-block:hover {
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow: 0 40px 90px -15px rgba(61, 10, 20, 0.22);
  transform: translateY(-4px);
}
.ph-portrait-block img {
  width: 100%;
  height: auto;  /* Proporcional ao tamanho original da imagem (600x800) */
  aspect-ratio: auto;
  object-fit: initial;
  border: 1px solid rgba(42, 42, 42, 0.05);
  display: block;
}
.ph-portrait-info {
  margin-top: 14px;
  text-align: center;
  padding-bottom: 4px;
}
.ph-portrait-name {
  font-family: var(--serif);
  font-size: 17.5px;
  font-weight: 500;
  color: var(--bordo-escuro);
  display: block;
  letter-spacing: 0.02em;
  transition: color 0.4s var(--ease);
}
.ph-portrait-block:hover .ph-portrait-name {
  color: var(--bordo);
}
.ph-portrait-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ouro);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   SOBRE — Unificado, Compacto e Editorial
   ============================================================ */
.sobre { 
  position: relative; 
  background: var(--bordo-escuro); 
  color: var(--marfim); 
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}
.sobre::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(800px 500px at 90% 10%, rgba(201,162,39,0.08), transparent 60%); 
  pointer-events: none;
}
.sobre__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

/* Coluna da Imagem */
.sobre__media {
  position: relative;
  width: 100%;
}
.sobre__img-wrapper {
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}
.sobre__img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 480px; /* Limita a altura sem distorcer */
  object-fit: cover;
  object-position: center 35%; /* Desce a imagem dentro do card */
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

/* Selo com os nomes das sócias */
.sobre__names-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(61, 10, 20, 0.95);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding: 16px 20px;
  margin-top: 12px;
}
.sobre__names-tag .who b {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--marfim);
  display: block;
  line-height: 1.2;
}
.sobre__names-tag .who span {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--ouro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}
.who-sep {
  width: 1px;
  height: 28px;
  background: rgba(201, 162, 39, 0.25);
  flex: none;
}

/* Coluna de Texto */
.sobre__content {
  display: flex;
  flex-direction: column;
}
.sobre__tag {
  color: var(--ouro);
  margin-bottom: 20px;
}
.sobre__title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  color: var(--marfim);
  line-height: 1.1;
  margin-bottom: 24px;
}
.sobre__title em {
  font-style: italic;
  color: var(--ouro-claro);
}
.sobre__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.8);
  margin-bottom: 20px;
  max-width: 540px;
}
.sobre__text:last-of-type {
  margin-bottom: 36px;
}

/* Grade de Prestígio de Duas Colunas com Divisor Vertical Dourado */
.sobre__stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding-top: 36px;
}
/* Divisor vertical central */
.sobre__stats-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: rgba(201, 162, 39, 0.2);
}
.stats-grid__axis {
  position: absolute;
  left: 50%;
  top: calc(50% + 18px);
  transform: translate(-50%, -50%);
  z-index: 5;
}
.axis-node {
  width: 20px;
  height: 20px;
  background: var(--bordo-escuro);
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: var(--ouro);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.stats-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stats-item:nth-child(even) {
  padding-left: 24px;
  text-align: left;
}
.stats-item:nth-child(odd) {
  padding-right: 24px;
  text-align: right; /* Alinhamento heráldico direcionado ao centro */
}
.stats-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--ouro);
  line-height: 1;
  display: block;
}
.stats-lbl {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: rgba(245, 241, 232, 0.65);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   DEPOIMENTOS — carrossel
   ============================================================ */
.depo {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--marfim);
  position: relative;
}
.depo__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.depo__title-editorial {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bordo-escuro);
  line-height: 1.1;
  margin: 12px 0;
}
.depo__google-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--grafite-50);
  justify-content: center;
}
.depo__google-stars .stars {
  color: var(--ouro);
  letter-spacing: 1px;
}
.depo__google-stars .score b {
  color: var(--bordo-escuro);
  font-weight: 700;
}
.depo__google-stars .count {
  font-size: 12px;
}

/* ===== Carrossel ===== */
.depo__carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.depo__carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.depo__track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.depo__slide {
  flex: 0 0 calc(33.333% - 22px);
  min-width: 0;
}

/* Cartões Individuais — mantendo estilo original */
.depo__card-clean {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  height: 100%;
}
.depo__card-clean:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.depo__quote-icon {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--ouro);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.depo__quote-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--grafite);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.depo__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.depo__author-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bordo);
}
.depo__author-status {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--grafite-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Navegação do Carrossel */
.depo__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: transparent;
  color: var(--ouro);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
  z-index: 2;
}
.depo__nav:hover {
  background: var(--ouro);
  color: var(--bordo-escuro);
  border-color: var(--ouro);
  transform: scale(1.08);
}
.depo__nav:active {
  transform: scale(0.95);
}
.depo__nav svg {
  width: 20px;
  height: 20px;
}
.depo__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Indicadores de slide — touch target mínimo 44×44px */
.depo__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.depo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(201, 162, 39, 0.25);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  padding: 18px 10px;
  background-clip: content-box;
  box-sizing: content-box;
}
.depo__dot:hover {
  background: rgba(201, 162, 39, 0.5);
}
.depo__dot.active {
  background: var(--ouro);
  transform: scale(1.2);
}

/* Footer Link */
.depo__footer-link {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.depo__write-button-clean {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ouro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease);
  position: relative;
  padding-bottom: 4px;
}
.depo__write-button-clean::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--ouro);
  transition: width .3s var(--ease), left .3s var(--ease);
}
.depo__write-button-clean:hover {
  color: var(--bordo);
}
.depo__write-button-clean:hover::after {
  width: 100%;
  left: 0;
  background: var(--bordo);
}

/* Responsividade — Desktop menor: 2 slides visíveis */
@media (max-width: 1100px) {
  .depo__slide {
    flex: 0 0 calc(50% - 16px);
  }
}

/* Responsividade Mobile */
@media (max-width: 960px) {
  .depo__carousel-wrapper {
    gap: 12px;
  }
  .depo__slide {
    flex: 0 0 100%;
  }
  .depo__nav {
    width: 40px;
    height: 40px;
  }
  .depo__nav svg {
    width: 18px;
    height: 18px;
  }
  .depo__track {
    gap: 24px;
  }
  .depo__card-clean {
    padding: 32px 0;
  }
  .depo__dots {
    margin-top: 24px;
  }
}

/* No desktop, ocultamos o botão de ver mais */
@media (min-width: 961px) {
  .depo__expand-container {
    display: none;
  }
}

/* No mobile, o botão de expandir mostra/oculta o carrossel */
@media (max-width: 960px) {
  .depo__expand-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
  }
  .depo__expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ouro);
    padding: 12px 24px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    cursor: pointer;
    background: transparent;
  }
  .depo__expand-btn:hover {
    color: var(--bordo-escuro);
    background: var(--champagne);
    border-color: var(--ouro);
  }
  .depo__expand-btn svg {
    transition: transform 0.4s var(--ease);
  }
  .depo__expand-btn.active svg {
    transform: rotate(180deg);
  }
  /* Modo expandido: mostra todos os slides empilhados */
  .depo__carousel.expanded .depo__track {
    flex-direction: column;
    transform: none !important;
    gap: 0;
  }
  .depo__carousel.expanded .depo__slide {
    flex: 0 0 100%;
  }
  .depo__carousel.expanded + .depo__dots {
    display: none;
  }
}

/* ============================================================
   FAQ - REESTRUTURADO PREMIUM ESTÁVEL
   ============================================================ */
.faq { 
  padding: clamp(80px, 11vw, 150px) 0; 
  background: var(--marfim-2); 
}
.faq__grid { 
  display: grid; 
  grid-template-columns: 1fr 1.15fr; 
  gap: clamp(40px, 6vw, 70px); 
  align-items: stretch; 
}

/* Coluna Esquerda */
.faq__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.faq__intro { 
  margin-bottom: var(--sp-3);
}
.faq__intro p { 
  color: var(--grafite-50); 
  margin: 18px 0 0; 
}

/* Lista de Perguntas (Banca Editorial) */
.faq__list { 
  border-top: 1px solid rgba(201, 162, 39, 0.25); 
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 12px;
}
.faq__item-btn {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 16px;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  background: transparent;
  transition: all 0.35s var(--ease);
  position: relative;
  border-left: 2px solid transparent;
}
.faq__item-btn:hover {
  background: rgba(255, 255, 255, 0.45);
  border-left-color: rgba(201, 162, 39, 0.4);
  padding-left: 24px;
}
.faq__item-btn.active {
  background: rgba(255, 255, 255, 0.8);
  border-left-color: var(--ouro);
  padding-left: 24px;
}

.faq__item-num {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--ouro);
  font-weight: 500;
  transition: color 0.35s var(--ease);
}
.faq__item-btn.active .faq__item-num {
  color: var(--bordo);
}

.faq__item-q {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: var(--bordo-escuro);
  line-height: 1.3;
  transition: color 0.35s var(--ease);
}
.faq__item-btn:hover .faq__item-q,
.faq__item-btn.active .faq__item-q {
  color: var(--bordo);
}

.faq__item-arrow {
  width: 16px;
  height: 16px;
  color: var(--ouro);
  opacity: 0.4;
  transform: translateX(0) scale(0.9);
  transition: all 0.35s var(--ease);
}
.faq__item-btn:hover .faq__item-arrow,
.faq__item-btn.active .faq__item-arrow {
  opacity: 1;
  color: var(--bordo);
  transform: translateX(4px) scale(1);
}

/* Coluna Direita - Painel de Resposta */
.faq__right {
  height: 100%;
}
.faq__answer-panel {
  background: #FFFDF9; /* marfim puro luxo */
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -25px rgba(61, 10, 20, 0.1);
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.faq__answer-panel::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  pointer-events: none;
  border-radius: calc(var(--radius) - 1px);
}

.faq__answer-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: faqFadeIn 0.45s var(--ease) forwards;
  will-change: opacity, transform;
}
.faq__answer-content.fade-out {
  animation: faqFadeOut 0.2s var(--ease) forwards;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes faqFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

.faq__answer-badge {
  font-size: 14px;
  color: var(--ouro);
  margin-bottom: 20px;
  display: inline-block;
  align-self: flex-start;
}
.faq__answer-q {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--bordo-escuro);
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 500;
}
.faq__answer-a {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--grafite);
  margin-bottom: 30px;
  text-wrap: pretty;
}
.faq__answer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.25), transparent);
  width: 100%;
  margin-top: auto;
  margin-bottom: 24px;
}
.faq__answer-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__answer-footer span {
  font-size: 12.5px;
  color: var(--grafite-50);
  font-weight: 500;
}
.faq__answer-footer .btn {
  align-self: flex-start;
  font-size: 11.5px;
  letter-spacing: .08em;
  padding: 13px 22px;
}

/* ============================================================
   FAQ - MODAL MOBILE (BOTTOM SHEET)
   ============================================================ */
.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.faq-modal.open {
  opacity: 1;
  visibility: visible;
}

.faq-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 10, 20, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.faq-modal__content {
  width: 100%;
  max-width: 600px;
  background: #FFFDF9;
  border-top: 2px solid var(--ouro);
  border-radius: 12px 12px 0 0;
  padding: 40px 24px 32px;
  position: relative;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  max-height: 85vh;
  overflow-y: auto;
}
.faq-modal.open .faq-modal__content {
  transform: translateY(0);
}

.faq-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--ouro);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: transparent;
  transition: all 0.3s;
}
.faq-modal__close:hover {
  background: var(--ouro);
  color: var(--bordo-escuro);
  border-color: var(--ouro);
}
.faq-modal__close svg {
  width: 18px;
  height: 18px;
}

.faq-modal__body .faq__answer-content {
  animation: none;
}
.faq-modal__body .faq__answer-panel {
  border: none;
  background: transparent;
  padding: 0;
  min-height: auto;
  box-shadow: none;
}
.faq-modal__body .faq__answer-panel::before {
  display: none;
}
.faq-modal__body .faq__answer-badge {
  display: none;
}
.faq-modal__body .faq__answer-q {
  font-size: 1.45rem;
  padding-right: 36px;
}
.faq-modal__body .faq__answer-a {
  font-size: 15px;
  margin-bottom: 24px;
}

/* Responsividade do FAQ */
@media (max-width: 1023px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq__right {
    display: none; /* Oculta o painel lateral no mobile */
  }
  .faq__item-btn {
    padding: 20px 8px;
  }
  .faq__item-btn:hover, .faq__item-btn.active {
    background: none;
    border-left-color: transparent;
    padding-left: 8px;
  }
  .faq__item-btn.active .faq__item-q {
    color: var(--bordo);
  }
  .faq__item-btn::after {
    display: none;
  }
  .faq__intro {
    margin-bottom: var(--sp-2);
  }
}

/* ============================================================
   LOCALIZAÇÃO - EDITORIAL SANGRADO COM MAPA MONUMENTAL
   ============================================================ */
.local { 
  padding: 0; 
  background: var(--marfim); 
  position: relative;
  overflow: hidden;
}
.local__bleed-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.local__bleed-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: stretch; 
  min-height: 520px;
}

/* Coluna de Informações (Esquerda) */
.local__info-panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(40px, 5vw, 80px) var(--gut);
  background: var(--marfim);
}
.local__info-panel-inner {
  width: 100%;
  max-width: calc(var(--maxw) / 2 - var(--gut));
}

.local__info-list {
  display: flex;
  flex-direction: column;
  margin: 28px 0 20px;
  gap: 24px;
  border-left: 2px solid var(--ouro);
  padding-left: 28px;
}

.local__info-group {
  display: flex;
  flex-direction: column;
}

.local__info-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.35rem);
  color: var(--bordo-escuro);
  margin-bottom: 6px;
}

.local__info-desc a, 
.local__info-desc p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--grafite);
  font-weight: 400;
  transition: color 0.3s var(--ease);
  text-wrap: pretty;
}
.local__info-desc a:hover {
  color: var(--ouro);
}

.local__actions { 
  display: flex; 
  gap: 16px; 
  margin-top: 8px;
}
.local__actions .btn {
  font-size: 12px;
  letter-spacing: .08em;
  padding: 15px 26px;
}

/* Coluna do Mapa Monumental Sangrado (Direita) */
.local__bleed-map {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: var(--marfim-2);
  border-left: 1px solid rgba(110, 20, 35, 0.08);
}

.local__bleed-map iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.65) sepia(.12) contrast(1.03);
  transition: filter 0.8s var(--ease);
}

.local__bleed-map:hover iframe {
  filter: none;
}

/* Responsividade */
@media (max-width: 1023px) {
  .local__bleed-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .local__info-panel {
    justify-content: center;
    padding: clamp(40px, 6vw, 70px) var(--gut);
  }
  .local__info-panel-inner {
    max-width: 100%;
  }
  .local__info-list {
    border-left: 2px solid var(--ouro);
    padding-left: 20px;
    gap: 20px;
  }
  .local__bleed-map {
    height: 380px;
    min-height: 380px;
    border-left: none;
    border-top: 1px solid rgba(110, 20, 35, 0.08);
  }
}
@media (max-width: 767px) {
  .local__bleed-map {
    height: 300px;
    min-height: 300px;
  }
  .local__actions {
    flex-direction: column;
    gap: 12px;
  }
  .local__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato { 
  background-image: linear-gradient(rgba(61, 10, 20, 0.94), rgba(61, 10, 20, 0.97)), url('assets/bg-contato-premium.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  color: var(--marfim); 
  padding: clamp(80px, 11vw, 150px) 0; 
  position: relative; 
  overflow: hidden; 
}
.contato::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(800px 600px at 100% 0%, rgba(201,162,39,.12), transparent 60%); 
  pointer-events: none;
}
.contato .wrap { position: relative; }
.contato__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contato__left h2 { color: var(--marfim); margin: 20px 0 22px; font-size: clamp(2rem, 4.4vw, 3.4rem); }
.contato__left h2 em { color: var(--ouro-claro); font-style: italic; }
.contato__left .lede { color: rgba(245,241,232,.85); max-width: 420px; margin-bottom: 36px; }

/* Nota de Compromisso Premium */
.contato__note {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.85);
  border-left: 2px solid var(--ouro);
  padding-left: 20px;
}
.contato__note strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ouro-claro);
  display: block;
  margin-bottom: 6px;
}

/* Formulário Glassmorphism de Luxo */
.form { 
  background: rgba(61, 10, 20, 0.45); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 162, 39, 0.2); 
  border-radius: 0; 
  padding: clamp(28px, 4vw, 48px); 
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5); 
  position: relative;
}
.form__row { margin-bottom: 20px; }
.form__row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { 
  display: block; 
  font-size: 10.5px; 
  font-weight: 500; 
  letter-spacing: .14em; 
  text-transform: uppercase; 
  color: rgba(245, 241, 232, 0.7); 
  margin-bottom: 4px; 
}
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--marfim);
  background: transparent; border: none; border-bottom: 1px solid rgba(245, 241, 232, 0.25); border-radius: 0;
  padding: 14px 0; transition: border-color .4s, box-shadow .4s; outline: none;
}
.form textarea { resize: vertical; min-height: 100px; }
.form input::placeholder, .form textarea::placeholder {
  color: rgba(245, 241, 232, 0.4);
}
.form select option {
  background: var(--bordo-escuro);
  color: var(--marfim);
}
.form input:focus, .form select:focus, .form textarea:focus { 
  border-color: var(--ouro); 
  box-shadow: none; 
}
.form .err-msg { display: none; font-size: 11px; letter-spacing: 0.05em; color: #fca5a5; margin-top: 6px; }
.form__row.invalid input, .form__row.invalid select, .form__row.invalid textarea { border-color: #fca5a5; }
.form__row.invalid .err-msg { display: block; }
.form button[type=submit] { width: 100%; justify-content: center; margin-top: 12px; }
.form__ok { 
  display: none; 
  text-align: center; 
  padding: 40px 10px;
  background: rgba(61, 10, 20, 0.45); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 162, 39, 0.2); 
  border-radius: 0; 
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5); 
}
.form__ok.show { display: block; }
.form__ok .check { width: 64px; height: 64px; border-radius: 50%; background: var(--ouro); display: grid; place-items: center; margin: 0 auto 20px; }
.form__ok .check svg { width: 32px; height: 32px; color: var(--bordo-escuro); }
.form__ok h3 { font-size: 1.6rem; color: var(--marfim); font-family: var(--serif); margin-bottom: 10px; }
.form__ok p { color: rgba(245, 241, 232, 0.7); }

/* ============================================================
   RODAPÉ
   ============================================================ */
/* ============================================================
   RODAPÉ
   ============================================================ */
.foot {
  background: var(--bordo-escuro);
  color: var(--marfim);
  padding: 40px 0 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.foot__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 35px;
}
.foot__brand {
  display: inline-block;
  margin-bottom: 24px;
}
.foot__brand img {
  width: 80px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.foot__brand:hover img {
  transform: scale(1.04);
}
.foot__about p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 340px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.foot__col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1.5rem;
}
.foot__col ul {
  display: grid;
  gap: 0.75rem;
}
.foot__col a, .foot__col li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 300ms ease;
  display: inline-flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.foot__col a:hover {
  color: var(--ouro);
}
.foot__col svg {
  width: 16px;
  height: 16px;
  color: var(--ouro);
  flex: none;
  margin-top: 3px;
}
.foot__contact li {
  margin-bottom: 0.75rem;
}
.foot__contact a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.4;
}
.foot__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}
.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.75rem;
}
.foot__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.foot__copy {
  color: rgba(255, 255, 255, 0.5);
}
.foot__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.foot__legal-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 300ms ease;
}
.foot__legal-links a:hover {
  color: var(--ouro);
}
.foot__legal-links .sep {
  margin: 0 10px;
  opacity: 0.3;
}
.foot__bottom-right {
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.foot__bottom-right a {
  color: var(--ouro);
  font-weight: 600;
  transition: color 300ms ease;
}
.foot__bottom-right a:hover {
  color: var(--ouro-claro);
}

/* ========================================
   COOKIE TOGGLE - Estilo iOS Minimalista
   ======================================== */
#cookie-toggle.active #cookie-toggle-dot {
  left: 15px !important;
  background: #C9A227;
}
#cookie-toggle.inactive #cookie-toggle-dot {
  left: 2px !important;
  background: #888;
}
#ck-prefs-link:hover #cookie-toggle {
  border-color: rgba(255,255,255,0.4) !important;
}
#ck-prefs-link:hover #cookie-toggle-dot {
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.5) !important;
}



/* ============================================================
   MOBILE MENU PANEL
   ============================================================ */
/* ============================================================
   MOBILE DRAWER & OVERLAY (DRAWER MOBILE PREMIUM)
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 85%;
  background: var(--bordo-escuro);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: var(--sp-4) var(--gut);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(201, 162, 39, 0.2);
}
.drawer.open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.drawer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer__brand img {
  width: 38px;
  height: 38px;
}
.drawer__brand b {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--marfim);
  letter-spacing: 0.02em;
}

.drawer__close {
  color: var(--ouro);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  transition: all 0.35s var(--ease);
}
.drawer__close:hover {
  background: var(--ouro);
  color: var(--bordo-escuro);
  border-color: var(--ouro);
  transform: rotate(90deg);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}
.drawer__nav a {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--marfim);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  opacity: 0.85;
  transition: all 0.35s var(--ease);
}
.drawer__nav a:hover {
  opacity: 1;
  color: var(--ouro);
  padding-left: 8px;
}
.drawer__cta {
  margin-top: 36px;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  opacity: 1 !important;
}

/* ========================================
   WHATSAPP PREMIUM EXPERIENCE
   ======================================== */
.wa-premium-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: var(--sans);
}

/* Balão Glassmorphism */
.wa-bubble {
  width: 300px;
  position: absolute;
  bottom: 85px;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px 24px 4px 24px;
  box-shadow: 0 20px 40px rgba(61, 10, 20, 0.15);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Cabeçalho */
.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 12px;
}
.wa-avatar-wrapper { position: relative; }
.wa-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #25d366;
}
.wa-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border: 2px solid #fff;
  border-radius: 50%;
}
.wa-name {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 15px;
}
.wa-status-text {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animação de Digitação */
.wa-typing {
  display: flex;
  gap: 4px;
  padding: 10px 0;
}
.wa-typing span {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: wa-typing-ani 1.4s infinite;
  opacity: 0.4;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes wa-typing-ani {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* Texto da Mensagem */
.wa-message-text p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.wa-message-text strong { color: #000; font-weight: 700; }

/* Botão Flutuante - Redondo */
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
}
.wa-float-btn svg {
  width: 30px;
  height: 30px;
  flex: none;
}

/* Fechar */
.wa-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.3s;
}
.wa-close:hover { color: #333; }

/* Responsivo */
@media (max-width: 480px) {
  .wa-premium-container { bottom: 20px; right: 20px; }
  .wa-bubble { width: 260px; bottom: 75px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .confianca__grid, .contato__grid, .local__grid, .faq__grid, .sobre__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .impacto__cols { grid-template-columns: 1fr; gap: 24px; }
  .sobre__media { max-width: 480px; margin: 0 auto 40px; }
  .confianca__media { max-width: 520px; margin: 30px auto 50px; }
  .foot__top { grid-template-columns: 1fr 1fr !important; gap: 2.5rem !important; }
  .foot__about { grid-column: 1 / -1 !important; }
}
@media (max-width: 1100px) {
  .hero__seal { right: clamp(10px, 3vw, 30px); width: clamp(180px, 28vw, 320px); opacity: .85; }
  .hero__inner { max-width: 720px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  /* Navbar floating pill no mobile */
  .nav-wrapper { padding: 12px 16px 0; }
  .nav-wrapper.scrolled { padding: 8px 16px 0; }
  .nav { padding: 10px 20px; gap: 16px; max-width: 100%; }
  .nav.scrolled { padding: 14px 32px; max-width: 100%; }
  .nav::before { border-radius: 50px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__brand img { width: 34px; height: 34px; }
  .nav.scrolled .nav__brand img { width: 30px; height: 30px; }
  .nav__brand-txt b { font-size: 15px; }
  .nav__brand-txt span { font-size: 8px; letter-spacing: .2em; }
  /* Desabilitar animações de entrada no mobile para performance */
  .nav, .nav__brand, .nav__links a, .nav__cta { animation: none; }
  .hero { padding: 140px var(--gut) 100px; justify-content: flex-start; }
  .hero__bg-orb { display: none; }
  .hero__particles { display: block; }
  .hero__particles span { animation-duration: 8s; }
  .hero__seal { opacity: .12; right: -10%; top: 45%; width: 70vw; animation: sealFloat 8s ease-in-out infinite; }
  .hero__seal-ring { display: block; inset: -5%; border-width: 1px; opacity: .3; }
  .hero__seal-ring.r2 { display: block; inset: -10%; opacity: .15; }
  .hero__seal-ring.r3 { display: none; }
  .hero__seal-glow { display: block; inset: -20%; opacity: .4; }
  .hero__inner { max-width: 100%; }
  .hero__kicker { margin-bottom: 20px; font-size: 11px; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4.2rem); line-height: 1.05; letter-spacing: -0.02em; }
  .hero__sub { margin-top: 20px; font-size: 16px; max-width: 100%; line-height: 1.6; }
  .hero__actions { margin-top: 28px; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; padding: 18px 24px; }
  .hero__meta { position: static; margin-top: auto; padding-top: 32px; gap: 16px; }
  .hero__rating { display: flex; align-items: center; gap: 8px; }
  .hero__rating .stars { font-size: 13px; }
  .hero__rating small { font-size: 12px; }
  .hero__divider-v { display: none; }
  .hero__scroll { display: flex; font-size: 10px; }
  .hero__scroll i { height: 28px; }
  .svc-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding-bottom: 8px;
    margin-left: calc(var(--gut) * -1);
    margin-right: calc(var(--gut) * -1);
    padding-left: var(--gut);
    padding-right: var(--gut);
    border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  }
  .svc-tabs::-webkit-scrollbar { display: none; }
  .svc-tab { 
    flex: 0 0 auto; 
    padding: 8px 0; 
    font-size: 11.5px; 
  }
  .svc-tab::after {
    bottom: -9px;
  }
  .svc-row { 
    grid-template-columns: 48px 1fr; 
    gap: 16px; 
    padding: 24px 8px; 
  }
  .svc-row:hover {
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.25);
  }
  .svc-num { 
    font-size: clamp(1.4rem, 3.5vw, 1.9rem); 
  }
  .svc-row:hover .svc-num {
    transform: none;
  }
  .svc-main h3 { 
    font-size: clamp(1.2rem, 3.2vw, 1.4rem); 
  }
  .svc-main p { 
    font-size: 13.5px; 
  }
  .svc-area, .svc-arrow { display: none; }
  .confianca__manifesto { grid-template-columns: 1fr; gap: 24px; margin-top: 30px; padding-top: 24px; }
  .manifesto-col:not(:last-child)::after {
    right: 0;
    bottom: -12px;
    top: auto;
    width: 100%;
    height: 1px;
    background: rgba(42, 42, 42, 0.06);
  }
  .servicos__foot { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 36px; padding-top: 28px; }
  .servicos__foot .btn { width: 100%; justify-content: center; }
  .form__row.two { grid-template-columns: 1fr; }
  .local__actions .btn { flex: 1; justify-content: center; }
  .foot__top { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .foot__brand img { max-width: 180px !important; }
  .foot__bottom { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }
  .foot__legal-links { justify-content: flex-start !important; }
  .foot__bottom-right { text-align: left !important; margin-left: 0 !important; }
  .contato__hours { gap: 20px; }
}
@media (max-width: 480px) {
  .sobre__stats-grid { gap: 20px 24px; padding-top: 28px; margin-top: 28px; }
  .sobre__stats-grid::before { top: 28px; }
  .sobre__stats-grid::after { top: calc(50% + 14px); }
  .stats-grid__axis { top: calc(50% + 14px); }
  .stats-item:nth-child(even) { padding-left: 12px; }
  .stats-item:nth-child(odd) { padding-right: 12px; }
}
@media (max-height: 800px) and (min-width: 761px) {
  .hero { padding: 100px var(--gut) 70px; }
  .hero__kicker { margin-bottom: 16px; }
  .hero h1 { font-size: clamp(2.6rem, 5.8vw, 6.2rem); }
  .hero__sub { margin-top: 18px; font-size: 16px; }
  .hero__actions { margin-top: 22px; }
  .hero__meta { bottom: 20px; }
  .hero__seal { width: clamp(180px, 26vw, 340px); }
}
