/* =============================================================
   V&S ADVOGADOS ASSOCIADOS — DESIGN SYSTEM
   Tema: Premium Dark Gold (Black & Gold)
   ============================================================= */

:root {
  /* Cores - Preto */
  --bg-0:       #050505;
  --bg-1:       #0a0a0a;
  --bg-2:       #111111;
  --bg-3:       #161616;
  --surface:    #1a1a1a;
  --surface-2:  #1f1f1f;
  --border:     rgba(201, 161, 74, 0.18);
  --border-strong: rgba(201, 161, 74, 0.4);

  /* Cores - Dourado */
  --gold-50:    #fbf3dc;
  --gold-100:   #f5d27a;
  --gold-300:   #d4af5b;
  --gold-500:   #c9a14a;
  --gold-700:   #8a6a1e;
  --gold-900:   #4a3a10;

  /* Cores - Texto */
  --text-0:     #ffffff;
  --text-1:     #e8e8e8;
  --text-2:     #b8b8b8;
  --text-3:     #7a7a7a;
  --text-muted: #5a5a5a;

  /* Cores - Sistema */
  --success:    #25d366;
  --success-dark:#128c7e;
  --danger:     #e74c3c;

  /* Gradientes */
  --grad-gold: linear-gradient(135deg, #f5d27a 0%, #c9a14a 50%, #8a6a1e 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(245,210,122,0.15) 0%, rgba(138,106,30,0.05) 100%);
  --grad-bg: radial-gradient(ellipse at top, #1a1410 0%, #050505 60%);

  /* Tipografia */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos */
  --container:  1200px;
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --gap-2xl: 6rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(201, 161, 74, 0.25);

  /* Transições */
  --t-fast: 150ms ease;
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-1);
  background: var(--bg-0);
  background-image: var(--grad-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--gold-100); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-50); }
ul, ol { list-style: none; }
::selection { background: var(--gold-500); color: var(--bg-0); }

/* Scrollbar customizada */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-700), var(--gold-900)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-500); }

/* =============================================================
   UTILITÁRIOS
   ============================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.text-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.center { text-align: center; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 800ms ease, transform 800ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   BARRA DE PROGRESSO
   ============================================================= */
.reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--grad-gold);
  z-index: 9999;
  transition: width 100ms ease-out;
  box-shadow: 0 0 10px var(--gold-500);
}

/* =============================================================
   BOTÕES
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-sm  { padding: 0.6rem 1.1rem; font-size: 0.78rem; }
.btn-lg  { padding: 1.1rem 2rem;   font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn-primary {
  background:
    linear-gradient(135deg, #fbf3dc 0%, #f5d27a 50%, #d4af5b 100%) 0 0 / 200% 100% no-repeat,
    var(--grad-gold);
  background-position: 100% 0;
  color: #1a1410;
  box-shadow: var(--shadow-gold);
  transition: background-position var(--t-base), transform var(--t-base), box-shadow var(--t-base), color var(--t-base);
}
.btn-primary:hover {
  background-position: 0 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 161, 74, 0.45);
  color: #0a0a0a;
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold-100);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover {
  background: var(--grad-gold-soft);
  border-color: var(--gold-100);
  color: var(--gold-50);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-1);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-500);
  color: var(--gold-100);
}

.btn-whatsapp {
  background: var(--success);
  color: white;
}
.btn-whatsapp:hover { background: #1ebe57; color: white; transform: translateY(-2px); }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--t-base);
  background: linear-gradient(180deg, rgba(5,5,5,0.6) 0%, transparent 100%);
}
.header.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--text-0);
}
.brand:hover { color: var(--gold-100); }
.brand-logo {
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-logo-img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(201, 161, 74, 0.25));
  transition: transform var(--t-base), filter var(--t-base);
}
.brand:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 18px rgba(245, 210, 122, 0.45));
}
.header.is-scrolled .brand-logo-img {
  width: 46px;
  height: 46px;
}
.footer-logo-img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 6px 20px rgba(201, 161, 74, 0.3));
}
@media (max-width: 560px) {
  .brand-logo-img { width: 44px; height: 44px; }
  .header.is-scrolled .brand-logo-img { width: 40px; height: 40px; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-text small {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 1px;
}

.nav {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-link {
  color: var(--text-1);
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.2rem; left: 50%;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: all var(--t-base);
  transform: translateX(-50%);
}
.nav-link:hover { color: var(--gold-100); }
.nav-link:hover::after { width: calc(100% - 1.8rem); }
.nav-link.is-active { color: var(--gold-100); }
.nav-link.is-active::after { width: calc(100% - 1.8rem); }
.nav .btn { margin-left: 0.5rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold-100);
  border-radius: 2px;
  transition: all var(--t-base);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    gap: 1rem;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: all var(--t-base);
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
  .nav-link { font-size: 1.2rem; padding: 0.8rem 1.5rem; }
  .nav .btn { margin-top: 1.5rem; margin-left: 0; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,161,74,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(138,106,30,0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(245,210,122,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,161,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,74,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}
.hero-orb-1 { background: var(--gold-700); top: -200px; left: -150px; }
.hero-orb-2 { background: var(--gold-900); bottom: -200px; right: -100px; animation-delay: -10s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(50px, -50px); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  background: var(--grad-gold-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-100);
  backdrop-filter: blur(10px);
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-100);
  box-shadow: 0 0 10px var(--gold-100);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-0);
}
.hero-title .text-gold { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 540px;
}
.hero-sub strong { color: var(--text-0); font-weight: 600; }

.hero-cta {
  display: flex; flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 560px) {
  .hero-pillars { grid-template-columns: 1fr; gap: 0.8rem; }
}
.pillar {
  display: flex; align-items: flex-start;
  gap: 0.7rem;
}
.pillar-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--grad-gold-soft);
  border: 1px solid var(--border);
  color: var(--gold-100);
  flex-shrink: 0;
}
.pillar div { display: flex; flex-direction: column; }
.pillar strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-0);
}
.pillar small {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* Card de stats no hero */
.hero-card {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(10,10,10,0.6));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  background: conic-gradient(from 0deg, transparent, var(--gold-500), transparent, var(--gold-700), transparent);
  opacity: 0.3;
  z-index: 0;
  animation: spin 8s linear infinite;
}
.hero-card-glow::after {
  content: '';
  position: absolute; inset: 1px;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, rgba(26,26,26,0.95), rgba(10,10,10,0.95));
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-card-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.hero-card-promises {
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.promise {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.promise:last-child { border-bottom: 0; padding-bottom: 0; }
.promise-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--grad-gold-soft);
  border: 1px solid var(--border-strong);
  color: var(--gold-100);
  flex-shrink: 0;
}
.promise div { display: flex; flex-direction: column; min-width: 0; }
.promise strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-0);
  line-height: 1.2;
}
.promise small {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 0.15rem;
}

/* Scroll-down indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid var(--gold-500);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.scroll-down:hover { opacity: 1; }
.scroll-down span {
  display: block;
  width: 3px; height: 6px;
  background: var(--gold-100);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =============================================================
   SECTION (genérico)
   ============================================================= */
.section {
  padding: var(--gap-2xl) 0;
  position: relative;
}
.section-alt {
  background:
    radial-gradient(ellipse at top, rgba(201,161,74,0.04) 0%, transparent 60%),
    var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  margin-bottom: 3.5rem;
  max-width: 760px;
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-100);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-0);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* =============================================================
   ESCRITÓRIO (Quem Somos)
   ============================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
}

.escritorio-img {
  position: relative;
}
.frame-gold {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 50% 45%, rgba(201, 161, 74, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.frame-gold::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  pointer-events: none;
  z-index: 2;
}

.justice-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 210, 122, 0.35) 0%, rgba(201, 161, 74, 0.12) 35%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: pulse-glow 5s infinite ease-in-out;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.justice-illustration {
  position: relative;
  z-index: 1;
  width: 85%;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(245, 210, 122, 0.25));
  animation: floaty 6s infinite ease-in-out;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.frame-badge {
  position: absolute;
  bottom: -20px; left: 20px;
  padding: 1rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.frame-badge small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-100);
  margin-bottom: 0.2rem;
}
.frame-badge strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-0);
}

.escritorio-text > * + * { margin-top: 1rem; }
.escritorio-text p {
  color: var(--text-2);
  font-size: 1rem;
}
.escritorio-text strong { color: var(--text-1); font-weight: 600; }

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.8rem 0 !important;
}
@media (max-width: 560px) {
  .check-list { grid-template-columns: 1fr; }
}
.check-list li {
  display: flex; align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-1);
}
.check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  flex-shrink: 0;
  position: relative;
}
.check::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 2px solid var(--gold-100);
  border-bottom: 2px solid var(--gold-100);
  transform: rotate(-45deg) translateY(-1px);
}

/* =============================================================
   CARDS (áreas de atuação)
   ============================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(26,26,26,0.6), rgba(10,10,10,0.6));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, rgba(31,31,31,0.8), rgba(15,15,15,0.8));
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--grad-gold-soft);
  border: 1px solid var(--border);
  color: var(--gold-100);
  margin-bottom: 1.2rem;
  transition: transform var(--t-base);
}
.card:hover .card-icon { transform: scale(1.05) rotate(-3deg); }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-100);
  text-transform: uppercase;
  transition: gap var(--t-fast);
}
.card-link:hover { gap: 0.6rem; color: var(--gold-50); }

/* =============================================================
   SIMULADOR
   ============================================================= */
.simulator {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(26,26,26,0.95), rgba(10,10,10,0.95));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.sim-form .sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 560px) {
  .sim-form .sim-grid { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-2);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-0);
  font-size: 0.95rem;
  transition: all var(--t-fast);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.15);
}
.field textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1l5 5 5-5' stroke='%23c9a14a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.sim-result {
  margin-top: 1.5rem;
  padding: 1.8rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--grad-gold-soft);
  animation: result-in 500ms ease;
}
@keyframes result-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sim-result h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-100);
  margin-bottom: 0.7rem;
}
.sim-result p { color: var(--text-1); margin-bottom: 0.5rem; }
.sim-result .sim-cta { margin-top: 1.2rem; }
.sim-result .sim-status {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.sim-status-ok   { background: rgba(37, 211, 102, 0.15); color: #4ade80; border: 1px solid rgba(37, 211, 102, 0.3); }
.sim-status-warn { background: rgba(245, 210, 122, 0.15); color: var(--gold-100); border: 1px solid var(--border-strong); }
.sim-status-no   { background: rgba(231, 76, 60, 0.15); color: #fca5a5; border: 1px solid rgba(231, 76, 60, 0.3); }

.sim-disclaimer {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

/* =============================================================
   STEPS (processo)
   ============================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-2);
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(145deg, rgba(26,26,26,0.7), rgba(10,10,10,0.7));
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item[open] {
  border-radius: var(--r-md);
  border-color: var(--border-strong);
  background: linear-gradient(145deg, rgba(31,31,31,0.9), rgba(15,15,15,0.9));
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-0);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-100); }
.faq-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  flex-shrink: 0;
  position: relative;
  transition: transform var(--t-base);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-100);
  border-radius: 1px;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; transition: transform var(--t-base); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon {
  background: var(--grad-gold);
  border-color: var(--gold-500);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--bg-0); }

.faq-body {
  padding: 0 1.8rem 1.5rem;
  animation: faq-in 300ms ease;
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-body p { color: var(--text-2); line-height: 1.7; }
.faq-body strong { color: var(--gold-100); font-weight: 600; }

/* =============================================================
   LOCALIZAÇÃO
   ============================================================= */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .locations-grid { grid-template-columns: 1fr; } }

.location-card {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(26,26,26,0.7), rgba(10,10,10,0.7));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.location-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.loc-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--grad-gold-soft);
  color: var(--gold-100);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 0.7rem;
}
.location-card address {
  font-style: normal;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.loc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-100);
}
.loc-link:hover { color: var(--gold-50); gap: 0.6rem; }

.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
  background: var(--bg-2);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.6) brightness(0.95);
}

/* =============================================================
   CONTATO
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  background: linear-gradient(145deg, rgba(26,26,26,0.6), rgba(10,10,10,0.6));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.contact-item:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}
.contact-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--grad-gold-soft);
  color: var(--gold-100);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 0.3rem;
}
.contact-item p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.5;
}
.contact-phone {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--gold-100);
  margin-top: 0.4rem;
}

.contact-form {
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(26,26,26,0.95), rgba(10,10,10,0.95));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-0);
}
.form-sub { color: var(--text-3); font-size: 0.9rem; margin-bottom: 0.5rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-2);
  cursor: pointer;
}
.check-field input {
  margin-top: 3px;
  accent-color: var(--gold-500);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.check-field a { color: var(--gold-100); }

.form-foot {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  position: relative;
  padding: 5rem 0 1.5rem;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; gap: 2.5rem; } }

.footer-brand p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  max-width: 380px;
  line-height: 1.7;
}

.socials { display: flex; gap: 0.7rem; }
.socials a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--grad-gold-soft);
  color: var(--gold-100);
  transition: all var(--t-base);
}
.socials a:hover {
  background: var(--grad-gold);
  color: var(--bg-0);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--grad-gold);
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: var(--text-2);
  font-size: 0.92rem;
  transition: color var(--t-fast);
  position: relative;
  padding-left: 0;
}
.footer-col ul li a::before {
  content: '→';
  color: var(--gold-500);
  margin-right: 0;
  opacity: 0;
  transition: all var(--t-fast);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold-100);
  padding-left: 0.5rem;
}
.footer-col ul li a:hover::before {
  opacity: 1;
  margin-right: 0.4rem;
}

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}
.footer-contact li svg {
  color: var(--gold-100);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact a { color: var(--text-2); }
.footer-contact a:hover { color: var(--gold-100); }

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-3);
  font-size: 0.85rem;
}
.footer-bottom .oab {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  background: var(--grad-gold-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-100);
}
.footer-bottom .disclaimer {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1.5rem; bottom: 6rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--bg-0);
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--t-base);
  z-index: 50;
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover { transform: translateY(-3px) scale(1.05); }

/* =============================================================
   WHATSAPP FLUTUANTE
   ============================================================= */
.whatsapp-float {
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all var(--t-base);
}
.whatsapp-float:hover {
  color: white;
  background: #1ebe57;
  transform: scale(1.05);
}
.whatsapp-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.5;
  animation: pulse-wa 2s infinite;
  z-index: -1;
}
@keyframes pulse-wa {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-1);
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
  box-shadow: var(--shadow-md);
}
.whatsapp-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--bg-3);
}
.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@media (max-width: 560px) {
  .whatsapp-label { display: none; }
}

/* =============================================================
   COOKIES (LGPD) — versão premium
   ============================================================= */
.cookies {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  max-width: 440px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.9rem;
  background:
    linear-gradient(145deg, rgba(20, 18, 14, 0.96), rgba(10, 10, 10, 0.96));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 161, 74, 0.08),
    inset 0 1px 0 rgba(245, 210, 122, 0.08);
  animation: cookiesIn 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cookiesIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.cookies-icon {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--grad-gold-soft);
  border: 1px solid var(--border-strong);
  color: var(--gold-100);
  flex-shrink: 0;
}

.cookies-text { grid-row: 1; min-width: 0; }
.cookies-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.cookies-text p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}
.cookies-text a {
  color: var(--gold-100);
  text-decoration: underline;
  text-decoration-color: rgba(245, 210, 122, 0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--t-fast);
}
.cookies-text a:hover { text-decoration-color: var(--gold-100); }

.cookies-actions {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  padding-top: 0.4rem;
  border-top: 1px solid var(--border);
}

.cookies-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-base);
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cookies-btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}
.cookies-btn-ghost:hover {
  color: var(--text-0);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.cookies-btn-primary {
  position: relative;
  color: #1a1410;
  background: var(--grad-gold);
  box-shadow:
    0 4px 16px rgba(201, 161, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.cookies-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transition: left 600ms ease;
  z-index: -1;
  pointer-events: none;
}
.cookies-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 24px rgba(201, 161, 74, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  color: #0a0a0a;
}
.cookies-btn-primary:hover::before { left: 100%; }
.cookies-btn-primary:active { transform: translateY(0); }

@media (max-width: 560px) {
  .cookies {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    bottom: 0.75rem;
    padding: 1rem;
  }
  .cookies-actions { justify-content: stretch; }
  .cookies-actions .cookies-btn { flex: 1; }
}

/* =============================================================
   ACESSIBILIDADE / MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold-100);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Print */
@media print {
  .header, .whatsapp-float, .back-top, .cookies, .scroll-down { display: none !important; }
  body { background: white; color: black; }
}
