/* ============================================================
   FR SOCIEDADE DE ADVOGADOS — style.css
   Paleta: bordô institucional (#8E1111) + grafite + off-white
   Mobile-first · animações via transform/opacity · reduced-motion
   ============================================================ */

:root {
  --bordo: #8e1111;
  --bordo-bright: #c22626;
  --bordo-deep: #5c0b0b;
  --bg: #0b0c0f;
  --bg-2: #101218;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.09);
  --text: #eceae6;
  --muted: #a5a4ad;
  --gold: #c9a86a; /* uso pontual (estrelas) */
  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Cinzel", Georgia, "Times New Roman", serif;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; font-weight: 700; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); }
.center { text-align: center; margin-top: 2.2rem; }

/* ---------- Fundo tecnológico ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 40%, transparent 100%);
}

.cursor-glow {
  position: fixed; z-index: -1; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(142,17,17,0.14) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  left: 50%; top: 30%;
  transition: opacity 0.4s;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow { opacity: 1; } }

/* ---------- Acessibilidade ---------- */
:focus-visible { outline: 2px solid var(--bordo-bright); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .cursor-glow { display: none; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 0.9rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  min-height: 48px;
}
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--bordo) 0%, var(--bordo-bright) 100%);
  color: #fff; box-shadow: 0 8px 28px rgba(142, 17, 17, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(194, 38, 38, 0.45); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--stroke); }
.btn-ghost:hover { border-color: var(--bordo-bright); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: rgba(194,38,38,0.5); }
.btn-outline:hover { background: rgba(142,17,17,0.15); transform: translateY(-2px); }
.btn-wa { background: linear-gradient(135deg, #1da851 0%, #25d366 100%); color: #fff; box-shadow: 0 8px 28px rgba(29,168,81,0.35); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,0.45); }
.btn-wa-outline { background: transparent; color: var(--text); border-color: rgba(37,211,102,0.55); }
.btn-wa-outline:hover { background: rgba(29,168,81,0.14); border-color: #25d366; transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.9rem; min-height: 42px; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Cabeçalho ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.header.scrolled {
  background: rgba(11, 12, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--stroke);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-text strong { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text); white-space: nowrap; line-height: 1.15; }
.nav-brand-text small { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; }
@media (max-width: 380px) {
  .nav-brand-text strong { font-size: 0.8rem; letter-spacing: 0.03em; }
  .nav-brand-text small { font-size: 0.55rem; letter-spacing: 0.18em; }
}

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 12px; min-width: 48px; min-height: 48px; justify-content: center; align-items: center;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  list-style: none;
  position: fixed; inset: var(--header-h) 0 auto 0;
  background: rgba(11, 12, 15, 0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1.2rem 6%; border-bottom: 1px solid var(--stroke);
  transform: translateY(-115%); transition: transform 0.35s ease;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.nav-menu.open { transform: translateY(0); }
.nav-menu a:not(.btn) {
  display: block; padding: 0.7rem 0.4rem; text-decoration: none; color: var(--text);
  font-weight: 500; font-size: 1.02rem; border-radius: 8px;
}
.nav-menu a:not(.btn):hover { color: var(--bordo-bright); }
.nav-cta-item { margin-top: 0.6rem; }

@media (min-width: 1150px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static; transform: none; flex-direction: row; align-items: center;
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    padding: 0; border: 0; gap: 0.05rem; flex-wrap: nowrap; max-height: none; overflow: visible;
  }
  .nav-menu a:not(.btn) {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.01em;
    padding: 0.4rem 0.55rem; color: var(--muted); white-space: nowrap;
    position: relative; transition: color 0.2s ease;
  }
  .nav-menu a:not(.btn)::after {
    content: ""; position: absolute; left: 0.55rem; right: 0.55rem; bottom: 0.12rem;
    height: 1.5px; background: var(--gold); border-radius: 2px;
    transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease;
  }
  .nav-menu a:not(.btn):hover { color: var(--text); }
  .nav-menu a:not(.btn):hover::after { transform: scaleX(1); }
  .nav-cta-item { margin: 0 0 0 0.6rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.hero-orb-1 {
  width: 560px; height: 560px; top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(142,17,17,0.55), transparent 70%);
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 420px; height: 420px; bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(64,14,14,0.6), transparent 70%);
  animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat { from { transform: translate(0, 0); } to { transform: translate(-40px, 40px); } }

/* ----- Balança da justiça (line art animada) ----- */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,17,17,0.20), transparent 68%);
  animation: glowPulse 7s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: 0.55; transform: scale(0.94); } to { opacity: 1; transform: scale(1.05); } }

.justice-svg { width: min(100%, 400px); height: auto; overflow: visible; position: relative; }
.js-line, .js-accent {
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: drawPath 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.js-line { stroke: rgba(236, 234, 230, 0.75); }
.js-accent { stroke: var(--bordo-bright); filter: drop-shadow(0 0 6px rgba(194, 38, 38, 0.45)); }
.js-d1 { animation-delay: 0.2s; }
.js-d2 { animation-delay: 0.45s; }
.js-d3 { animation-delay: 0.8s; }
.js-d4 { animation-delay: 1.15s; }
.js-d5 { animation-delay: 1.55s; }
.js-d6 { animation-delay: 1.9s; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }

.js-beam {
  transform-box: view-box;
  transform-origin: 210px 122px;
  animation: beamSway 8s ease-in-out 3.6s infinite alternate;
}
@keyframes beamSway {
  0% { transform: rotate(0deg); }
  35% { transform: rotate(1.4deg); }
  70% { transform: rotate(-1.1deg); }
  100% { transform: rotate(0.5deg); }
}

/* Acessibilidade: com movimento reduzido, a balança aparece pronta e parada */
@media (prefers-reduced-motion: reduce) {
  .js-line, .js-accent { stroke-dasharray: none; stroke-dashoffset: 0; }
}

/* Mobile: balança vira marca-d'água atrás do conteúdo */
.hero-visual { position: absolute; inset: 0; opacity: 0.13; pointer-events: none; z-index: -1; }
@media (min-width: 900px) {
  .hero-visual { position: relative; inset: auto; opacity: 1; pointer-events: auto; z-index: 0; }
}

.hero-inner { display: grid; gap: 3rem; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.86rem; color: var(--muted); font-weight: 500;
  border: 1px solid var(--stroke); border-radius: 999px;
  padding: 0.45rem 1rem; margin-bottom: 1.4rem;
  background: var(--surface);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bordo-bright); box-shadow: 0 0 12px var(--bordo-bright); flex: none; }

.hero h1 { font-size: clamp(1.9rem, 5.4vw, 3.4rem); letter-spacing: -0.02em; max-width: 21ch; }
.grad {
  background: linear-gradient(100deg, var(--bordo-bright), #e0705f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 1.3rem; color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.15rem); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-proof { display: flex; align-items: center; gap: 0.8rem; margin-top: 2.2rem; color: var(--muted); font-size: 0.95rem; }
.hero-proof strong { color: var(--text); }
.stars { color: var(--gold); letter-spacing: 0.18em; font-size: 1.02rem; }

.glass-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.5fr 1fr; }
}

.scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 2px solid var(--stroke); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-hint-wheel { width: 4px; height: 9px; border-radius: 4px; background: var(--bordo-bright); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0.2; } }

/* ---------- Faixa de confiança ---------- */
.trust {
  border-block: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(142,17,17,0.08), rgba(142,17,17,0.02));
  padding: 2.6rem 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: 0.3rem; }
.trust-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 4.5vw, 2.5rem); color: var(--bordo-bright); }
.trust-label { font-size: 0.84rem; color: var(--muted); line-height: 1.45; }
@media (min-width: 820px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Seções ---------- */
.section { padding: clamp(4rem, 9vw, 6.5rem) 0; position: relative; }
.section-alt { background: var(--bg-2); border-block: 1px solid rgba(255,255,255,0.04); }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bordo-bright); margin-bottom: 0.8rem;
}
.section-head h2 { font-size: clamp(1.55rem, 4vw, 2.3rem); letter-spacing: -0.015em; }
.section-sub { color: var(--muted); margin-top: 0.9rem; }

/* ---------- Sobre ---------- */
.about-grid { display: grid; gap: 2.4rem; }
.about-text p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.03rem; }
.about-text strong { color: var(--text); }
.about-text a { color: var(--bordo-bright); }
.about-points { list-style: none; display: grid; gap: 1rem; }
.about-points li { padding: 1.4rem 1.5rem; transition: transform 0.3s ease, border-color 0.3s ease; }
.about-points li:hover { transform: translateY(-4px); border-color: rgba(194,38,38,0.4); }
.about-points h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.about-points p { color: var(--muted); font-size: 0.94rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.25fr 1fr; align-items: start; } }

/* ---------- Áreas ---------- */
.areas-grid { display: grid; gap: 1.3rem; }
.area-card {
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 0.85rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.area-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--bordo-bright), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.area-card:hover { transform: translateY(-6px); border-color: rgba(194,38,38,0.45); box-shadow: var(--shadow); }
.area-card:hover::after { opacity: 1; }
.area-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(142,17,17,0.35), rgba(194,38,38,0.12));
  border: 1px solid rgba(194,38,38,0.35);
}
.area-ico svg { width: 26px; height: 26px; fill: #e8b8b0; stroke: #e8b8b0; }
.area-card h3 { font-size: 1.18rem; }
.area-card > p { color: var(--muted); font-size: 0.95rem; }
.area-card ul { list-style: none; display: grid; gap: 0.4rem; }
.area-card ul li { font-size: 0.9rem; color: var(--text); padding-left: 1.3rem; position: relative; }
.area-card ul li::before { content: "→"; position: absolute; left: 0; color: var(--bordo-bright); }
.area-benefit { font-size: 0.88rem; color: var(--muted); border-left: 2px solid var(--bordo); padding-left: 0.9rem; font-style: italic; }
.area-card .btn { margin-top: auto; align-self: flex-start; }
.area-card-cta { justify-content: center; text-align: center; background: linear-gradient(160deg, rgba(142,17,17,0.22), rgba(142,17,17,0.05)); }
.area-card-cta .btn { align-self: center; }
@media (min-width: 720px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Chips de problemas ---------- */
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chips li {
  border: 1px solid var(--stroke); background: var(--surface);
  padding: 0.65rem 1.1rem; border-radius: 999px; font-size: 0.92rem; color: var(--text);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.chips li:hover { border-color: rgba(194,38,38,0.55); background: rgba(142,17,17,0.14); transform: translateY(-2px); }

/* ---------- Diferenciais ---------- */
.diff-grid { display: grid; gap: 1.6rem; }
.diff-item { border-top: 1px solid var(--stroke); padding-top: 1.3rem; }
.diff-num { font-family: var(--font-display); color: var(--bordo-bright); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.12em; }
.diff-item h3 { font-size: 1.08rem; margin: 0.5rem 0 0.4rem; }
.diff-item p { color: var(--muted); font-size: 0.94rem; }
@media (min-width: 720px) { .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 2.5rem; } }
@media (min-width: 1080px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Timeline ---------- */
.timeline { list-style: none; display: grid; gap: 1.6rem; position: relative; counter-reset: step; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--bordo-bright), rgba(142,17,17,0.1));
}
.timeline-step { position: relative; padding-left: 3.4rem; }
.timeline-dot {
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2); border: 2px solid var(--bordo-bright);
  font-family: var(--font-display); font-weight: 700; color: var(--bordo-bright);
  box-shadow: 0 0 18px rgba(194,38,38,0.3);
}
.timeline-step h3 { font-size: 1.06rem; margin-bottom: 0.25rem; }
.timeline-step p { color: var(--muted); font-size: 0.94rem; max-width: 52ch; }
@media (min-width: 980px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 2.6rem 2rem; }
  .timeline::before { left: 8px; right: 8px; top: 19px; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, var(--bordo-bright), rgba(142,17,17,0.1)); }
  .timeline-step { padding-left: 0; padding-top: 3.2rem; }
}

/* ---------- Equipe ---------- */
.team-grid { display: grid; gap: 1.3rem; }
.team-card { padding: 1.7rem 1.5rem; text-align: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.team-card:hover { transform: translateY(-5px); border-color: rgba(194,38,38,0.4); }
.team-photo {
  width: 132px; height: 132px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 10px, rgba(255,255,255,0.02) 10px 20px);
  border: 2px dashed rgba(194,38,38,0.5);
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-align: center; line-height: 1.5;
}
.team-card h3 { font-size: 1.08rem; }
.team-role { color: var(--bordo-bright); font-size: 0.85rem; font-weight: 600; margin: 0.3rem 0 0.7rem; }
.team-card > p:last-child { color: var(--muted); font-size: 0.92rem; }
.team-note { margin-top: 1.6rem; font-size: 0.85rem; color: var(--muted); font-style: italic; }
@media (min-width: 820px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Unidades ---------- */
.units-grid { display: grid; gap: 1.4rem; }
.unit-card { padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.unit-card h3 { font-size: 1.25rem; }
.unit-addr { color: var(--muted); font-size: 0.96rem; }
.unit-meta { font-size: 0.92rem; color: var(--muted); }
.unit-meta strong { color: var(--gold); }
.unit-meta a { color: var(--text); }
.unit-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 0.5rem 0 0.9rem; }
.unit-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--stroke); }
.unit-map iframe { display: block; border: 0; filter: grayscale(0.4) contrast(1.05); }
@media (min-width: 880px) { .units-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Avaliações ---------- */
.reviews-grid { display: grid; gap: 1.2rem; }
.review-card { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; transition: transform 0.3s ease, border-color 0.3s ease; }
.review-card:hover { transform: translateY(-4px); border-color: rgba(201,168,106,0.35); }
.review-card p { color: var(--text); font-size: 0.97rem; font-style: italic; }
.review-card footer { color: var(--muted); font-size: 0.84rem; }
.reviews-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Instagram ---------- */
.insta-grid { display: grid; gap: 1.2rem; }
.insta-card { padding: 1.7rem 1.5rem; text-decoration: none; display: flex; flex-direction: column; gap: 0.6rem; transition: transform 0.3s ease, border-color 0.3s ease; }
.insta-card:hover { transform: translateY(-5px); border-color: rgba(194,38,38,0.45); }
.insta-tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bordo-bright); border: 1px solid rgba(194,38,38,0.45); border-radius: 999px; padding: 0.25rem 0.8rem;
}
.insta-card h3 { font-size: 1.12rem; }
.insta-card p { color: var(--muted); font-size: 0.93rem; }
@media (min-width: 780px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--stroke); border-radius: 12px; background: var(--surface);
  overflow: hidden; transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: rgba(194,38,38,0.45); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.3rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.99rem; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  color: var(--bordo-bright); font-size: 1.5rem; font-weight: 400; transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: 0.95rem; }

/* ---------- CTA final + formulário ---------- */
.cta-final {
  background:
    radial-gradient(ellipse 70% 90% at 80% 10%, rgba(142,17,17,0.22), transparent 60%),
    var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-grid { display: grid; gap: 2.6rem; align-items: center; }
.cta-text h2 { font-size: clamp(1.6rem, 4.4vw, 2.4rem); max-width: 20ch; }
.cta-text > p { color: var(--muted); margin: 1.1rem 0 1.8rem; max-width: 52ch; }
.cta-alt { color: var(--muted); font-size: 0.9rem; margin-top: 1.2rem; }
@media (min-width: 980px) { .cta-grid { grid-template-columns: 1.1fr 1fr; } }

.contact-form { padding: 2rem 1.7rem; display: grid; gap: 1rem; }
.contact-form h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.form-row { display: grid; gap: 0.35rem; }
.form-row label { font-size: 0.86rem; font-weight: 500; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(0,0,0,0.35); border: 1px solid var(--stroke);
  border-radius: 10px; padding: 0.8rem 1rem; color: var(--text);
  font-family: var(--font-body); font-size: 1rem; min-height: 48px;
  transition: border-color 0.25s ease;
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--bordo-bright); outline: none; }
.form-row select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-consent { grid-template-columns: auto 1fr; align-items: start; gap: 0.7rem; }
.form-consent input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; accent-color: var(--bordo); }
.form-consent label { font-size: 0.83rem; }
.form-consent a { color: var(--bordo-bright); }
.form-feedback { font-size: 0.9rem; color: var(--gold); min-height: 1.2em; }
.form-note { font-size: 0.78rem; color: var(--muted); }

/* ---------- Rodapé ---------- */
.footer { border-top: 1px solid var(--stroke); background: #08090b; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; gap: 2.6rem 2rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.55rem; border-bottom: 1px solid var(--stroke); }
.footer-col p, .footer-col address { color: var(--muted); font-size: 0.9rem; font-style: normal; margin-bottom: 0.45rem; }
.footer-col a { color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--bordo-bright); }
.footer-brand-logo { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-bottom: 1.1rem; }
.footer-brand-logo img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.footer-brand-text strong { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text); }
.footer-brand-text small { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.footer-oab { font-size: 0.82rem !important; }
.footer-social { display: flex; gap: 1.1rem; margin-top: 0.9rem; }
.footer-social a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.footer-social a:hover { color: var(--dourado-claro, #e7cf94); }
.footer-legal-links { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.8rem; }
.footer-bottom { border-top: 1px solid var(--stroke); margin-top: 2.6rem; padding-top: 1.6rem; }
.footer-bottom p { color: var(--muted); font-size: 0.78rem; margin-bottom: 0.5rem; }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1da851, #25d366);
  box-shadow: 0 10px 30px rgba(29, 168, 81, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 36px rgba(29,168,81,0.55); }

/* ---------- Banner de cookies ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 110;
  background: rgba(16, 18, 24, 0.97); border: 1px solid var(--stroke); border-radius: 14px;
  padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 0.9rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 0.86rem; color: var(--muted); }
.cookie-banner a { color: var(--bordo-bright); }
.cookie-actions { display: flex; gap: 0.7rem; }
@media (min-width: 720px) {
  .cookie-banner { left: auto; max-width: 480px; flex-direction: row; align-items: center; }
  .cookie-actions { flex: none; }
}

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* ---------- Páginas internas (legal / 404) ---------- */
.page-legal { padding: calc(var(--header-h) + 3rem) 0 4rem; min-height: 70vh; }
.page-legal h1 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); margin-bottom: 1.6rem; }
.page-legal h2 { font-size: 1.25rem; margin: 2rem 0 0.7rem; }
.page-legal p, .page-legal li { color: var(--muted); font-size: 0.98rem; margin-bottom: 0.8rem; }
.page-legal ul { padding-left: 1.4rem; }
.page-404 { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 2rem; }
.logo-404 { margin: 0 auto 1.5rem; border-radius: 14px; }
.page-404 h1 { font-size: clamp(3.5rem, 12vw, 7rem); color: var(--bordo-bright); }
.page-404 p { color: var(--muted); margin: 1rem 0 2rem; }
