/* ═══════════════════════════════════════════════════════════
   SOUZA FELICIANO ADVOCACIA — Clean Luxury
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #F5F2EA;
  --surface:       #FFFFFF;
  --ink:           #0A0A0A;
  --ink-soft:      #1C1A16;
  --muted:         #6B6660;
  --muted-dark:    #C9C4BA;
  --gold:          #B08D3E;
  --gold-light:    #C9A857;
  --gold-dark:     #8A6C2D;
  --border:        rgba(0,0,0,0.08);
  --border-gold:   rgba(176,141,62,0.28);
  --font:          'DM Sans', -apple-system, sans-serif;
  --font-display:  'Cinzel', 'Cambria', Georgia, serif;
  --shadow-soft:   0 4px 24px rgba(10,10,10,0.07);
  --shadow-lift:   0 24px 60px rgba(10,10,10,0.16);
  --ease-lux:      cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* O cliente desenvolveu o site com o zoom do navegador em 80%. 
   Para evitar que o site fique gigante em telas normais no PC (100%), 
   aplicamos este scale global nativamente apenas no desktop. */
@media (min-width: 1021px) {
  body {
    zoom: 0.80;
  }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold); color: #fff; }

/* ── Cortina de entrada ─────────────────────────── */
@keyframes autoDismissCurtain {
  0%, 65% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
.curtain {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-lux), visibility 0.7s;
  animation: autoDismissCurtain 1.2s forwards;
  pointer-events: none;
}
.curtain.done { opacity: 0; visibility: hidden; pointer-events: none; }
.curtain img { width: 220px; opacity: 0; animation: curtainLogo 1.1s var(--ease-lux) forwards; }
@keyframes curtainLogo {
  0% { opacity: 0; transform: scale(0.85) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Corner ticks (assinatura visual) ───────────── */
.ticks { position: relative; }
.ticks::before, .ticks::after {
  content: ''; position: absolute; width: 34px; height: 34px;
  border-color: var(--gold); border-style: solid; opacity: 0.85;
  transition: transform 0.6s var(--ease-lux), border-color 0.6s var(--ease-lux);
}
.ticks::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.ticks::after  { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* ── Scroll reveal states ───────────────────────── */
.rv {
  opacity: 0; will-change: transform, opacity;
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.rv.up     { transform: translateY(30px); }
.rv.left   { transform: translateX(-40px); }
.rv.right  { transform: translateX(40px); }
.rv.zoom   { transform: scale(0.94); }
.rv.shown  { opacity: 1; transform: none; }

/* ── Navegação ──────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(16px, 4.5vw, 56px);
  transition: all 0.4s var(--ease-lux);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(176, 141, 62, 0.35);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
  padding-top: 8px; padding-bottom: 8px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 62px; transition: height 0.4s var(--ease-lux); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.nav.scrolled .nav-logo img { height: 48px; }
.nav-logo span {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.14em;
  color: #fff; text-transform: uppercase; transition: color 0.4s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.nav.scrolled .nav-logo span { color: #ffffff; }
.nav-links { display: flex; gap: clamp(12px, 2vw, 30px); align-items: center; }
.nav-links a {
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,0.85); transition: color 0.3s, text-shadow 0.3s; position: relative;
  text-shadow: 0 1px 5px rgba(0,0,0,0.6);
  padding: 4px 0;
}
.nav.scrolled .nav-links a { color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.35s var(--ease-lux), box-shadow 0.35s;
  box-shadow: 0 0 8px rgba(201,168,87,0);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light) !important;
  text-shadow: 0 0 12px rgba(201, 168, 87, 0.5) !important;
}
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: var(--gold-light) !important;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  box-shadow: 0 0 8px rgba(201, 168, 87, 0.7);
}
.nav-cta {
  padding: 12px 26px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  color: var(--gold-light) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-lux) !important;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav.scrolled .nav-cta {
  padding: 10px 22px;
  color: var(--gold-light) !important;
  border-color: var(--gold);
}
.nav-cta:hover, .nav.scrolled .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0A0A0A !important;
  border-color: var(--gold-light);
  box-shadow: 0 6px 25px rgba(201, 168, 87, 0.55);
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  padding: 8px; z-index: 1005; background: none; border: none; cursor: pointer;
}
.nav-burger span {
  display: block; width: 26px; height: 2px; background: #fff;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.nav.scrolled .nav-burger span { background: #fff; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold-light); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold-light); }

@media (max-width: 992px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(176, 141, 62, 0.35);
    box-shadow: -15px 0 45px rgba(0,0,0,0.85);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 22px; padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 14px; letter-spacing: 0.14em; width: 100%; text-align: center; padding: 8px 0; }
  .nav-cta { width: 100%; text-align: center; margin-top: 10px; }
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 85svh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 60px; /* space at the bottom */
  overflow: hidden; perspective: 1200px;
  z-index: 10; box-shadow: 0 24px 60px -15px rgba(0,0,0,0.9);
  background: var(--ink);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  transform: scale(1.06) translateY(-1%); transform-origin: center;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, 
      rgba(8,7,5,0.80) 0%, 
      rgba(10,9,6,0.65) 28%, 
      rgba(10,9,6,0.85) 65%, 
      rgba(8,7,5,0.98) 100%
    );
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 100px 24px 10px; max-width: 980px;
  transform-style: preserve-3d;
}

/* Animação Cinematográfica de Entrada */
.hero-content > * {
  opacity: 0;
  animation-name: cinematicReveal;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}
.hero-logo { 
  width: clamp(320px, 45vw, 600px); margin: 0 auto 32px; 
  animation-name: logoReveal !important;
  animation-delay: 0.5s !important;
}
.hero-eyebrow { animation-delay: 1.2s !important; }
.hero h1 { animation-delay: 1.6s !important; }
.hero-sub { animation-delay: 2.0s !important; }
.hero-pillars { animation-delay: 2.4s !important; }

@keyframes cinematicReveal {
  0% { opacity: 0; transform: translateY(40px); filter: blur(12px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}
@keyframes logoReveal {
  0% { opacity: 0; transform: scale(0.8) translateY(40px); filter: blur(20px) drop-shadow(0 0 0 rgba(176,141,62,0)); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0px) drop-shadow(0 6px 30px rgba(176,141,62,0.45)); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px; font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 44px; height: 1px; background: var(--gold);
  box-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 5.6vw, 66px); line-height: 1.16;
  color: #fff; letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero h1 em { font-style: italic; color: var(--gold); text-shadow: 0 4px 24px rgba(0,0,0,0.95), 0 0 16px rgba(0,0,0,0.8); }
.hero-sub {
  margin: 28px auto 0; max-width: 660px; line-height: 1.7;
  font-size: clamp(16px, 1.9vw, 19px); color: rgba(255,255,255,0.86); font-weight: 400;
}
.hero-pillars {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: clamp(16px, 3.5vw, 48px);
  margin: 36px auto 30px; width: 100%;
}
.hero-pillar {
  font-size: clamp(12px, 1.3vw, 13.5px); letter-spacing: 0.15em; text-transform: uppercase;
  color: #ffffff; text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-align: center; font-weight: 600; white-space: nowrap;
}
.hero-pillar::before {
  content: ''; display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}
.hero-pillar svg { width: 15px; height: 15px; stroke: var(--gold-light); }
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 17px 36px; font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.4s var(--ease-lux); position: relative; overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  background-size: 200% 200%;
  color: #fff; box-shadow: 0 10px 34px rgba(176,141,62,0.42);
}
.btn-gold:hover { background-position: 100% 100%; transform: translateY(-3px); box-shadow: 0 16px 44px rgba(176,141,62,0.55); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }
.btn-shine::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shine 3.4s infinite;
}
@keyframes shine { 0% { left: -80%; } 55%, 100% { left: 130%; } }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6); font-size: 10.5px;
  letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Seções base & Transição Fluida entre Dobras ──── */
.section { padding: clamp(60px, 9vw, 95px) clamp(20px, 6vw, 72px); position: relative; z-index: 1; }

.section-dark { 
  background: var(--ink); 
  color: var(--bg); 
  z-index: 3; 
  box-shadow: 0 -35px 110px rgba(0,0,0,0.75), 0 35px 110px rgba(0,0,0,0.75); 
  position: relative;
}

.section-dark::before,
.section-dark::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 4;
}

.section-dark::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
}

.section-dark::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
}

.section-white { 
  background: var(--surface); 
  z-index: 2; 
  box-shadow: 0 -25px 90px rgba(10,10,10,0.18), 0 25px 90px rgba(10,10,10,0.18); 
  position: relative;
}

.section-white::before,
.section-white::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 50px;
  pointer-events: none;
  z-index: 4;
}

.section-white::before {
  top: 0;
  background: linear-gradient(180deg, rgba(245,242,234,0.8) 0%, rgba(255,255,255,0.4) 60%, transparent 100%);
}

.section-white::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(245,242,234,0.8) 0%, rgba(255,255,255,0.4) 60%, transparent 100%);
}

/* Divisor Dourado Fino e Suave entre Seções */
.section-gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,87,0.3) 25%, rgba(201,168,87,0.3) 75%, transparent 100%);
  position: relative;
  z-index: 10;
}

.wrap { max-width: 1240px; margin: 0 auto; }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 18px;
}
.sec-eyebrow::before, .sec-eyebrow::after { content: ''; width: 34px; height: 1px; background: var(--gold); opacity: 0.6; }
.sec-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px); line-height: 1.22; letter-spacing: 0.01em;
}
.section-dark .sec-title { color: #fff; }
.sec-title em { font-style: normal; color: var(--gold); }
.section-dark .sec-title em { color: var(--gold-light); }
.sec-sub { margin-top: 18px; color: var(--muted); font-size: 17px; }
.section-dark .sec-sub { color: var(--muted-dark); }

/* ── Marca d'água ───────────────────────────────── */
.watermark {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: 0.05; width: clamp(400px, 55vw, 800px);
}

/* ── ÁREAS DE ATUAÇÃO ───────────────────────────── */
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 26px; position: relative; z-index: 1;
}
.area-card {
  scroll-margin-top: 100px;
  background: var(--surface); padding: 44px 34px 38px;
  border: 1px solid var(--border); position: relative;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), border-color 0.4s;
  transform-style: preserve-3d; will-change: transform;
  display: flex; flex-direction: column;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-lux);
}
.area-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); border-color: var(--border-gold); }
.area-card:hover::before { transform: scaleX(1); }
.area-icon {
  width: 54px; height: 54px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold);
  transition: all 0.4s var(--ease-lux);
}
.area-card:hover .area-icon { background: var(--gold); border-color: var(--gold); }
.area-icon svg { width: 25px; height: 25px; stroke: var(--gold); transition: stroke 0.4s; }
.area-card:hover .area-icon svg { stroke: #fff; }
.area-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.area-card .area-focus {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.area-card p { color: var(--muted); font-size: 15px; flex: 1; }
.area-link {
  margin-top: 24px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s;
}
.area-link:hover { gap: 14px; color: var(--gold); }
.btn-plantao {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: #fff;
  padding: 14px 20px; border-radius: 6px;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 24px; transition: all 0.35s var(--ease-lux);
}
.btn-plantao:hover {
  background: var(--gold-dark); color: #fff; transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(176,141,62,0.3);
}
.area-24h {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  padding: 5px 10px; background: var(--ink); color: var(--gold-light);
  display: flex; align-items: center; gap: 6px;
}
.area-24h .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #3BC96A;
  animation: dotPulse 1.6s infinite;
}
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(59,201,106,0.55); } 50% { box-shadow: 0 0 0 5px rgba(59,201,106,0); } }

/* ── SOBRE ──────────────────────────────────────── */
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.sobre-foto { 
  position: relative; padding: 26px; max-width: 540px; justify-self: center; width: 100%;
}
.sobre-foto.ticks:hover::before { transform: translate(-8px, -8px); border-color: var(--gold-light); }
.sobre-foto.ticks:hover::after  { transform: translate(8px, 8px); border-color: var(--gold-light); }
.sobre-foto img {
  width: 100%; height: auto; display: block;
  /* Moldura de luxo com borda dourada */
  border: 1px solid rgba(201, 168, 87, 0.25);
  padding: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-lift);
  will-change: transform, box-shadow;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux), border-color 0.6s var(--ease-lux);
}
.sobre-foto:hover img {
  transform: translateY(-12px) scale(1.015);
  border-color: var(--gold);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
}
.sobre-body .sec-eyebrow { margin-bottom: 14px; }
.sobre-body h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.25; margin-bottom: 24px;
}
.sobre-body h2 em { font-style: normal; color: var(--gold); }
.sobre-body p { color: var(--muted); margin-bottom: 18px; font-size: 16.5px; }
.sobre-stats { display: flex; gap: clamp(28px, 4vw, 56px); margin-top: 36px; flex-wrap: wrap; }
.stat { border-left: 2px solid var(--gold); padding-left: 18px; }
.stat b {
  font-family: var(--font-display); font-size: 34px; font-weight: 600;
  color: var(--ink); display: block; line-height: 1;
}
.stat span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ── ADVOGADAS — constelação com balança e linhas ── */
.adv-section { position: relative; }
.adv-constellation {
  position: relative; max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: clamp(90px, 12vw, 180px) clamp(30px, 6vw, 70px);
  align-items: center; justify-items: center;
}


/* Cards */
.adv-card {
  position: relative; z-index: 2;
  width: 100%; max-width: 330px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(201,168,87,0.22);
  cursor: pointer; overflow: hidden;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux), border-color 0.45s;
  will-change: transform;
}
.adv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 5;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.5s var(--ease-lux);
}
.adv-card:hover::after, .adv-card.active::after { transform: scaleX(1); }
.adv-card::before {
  content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(201,168,87,0.22) 50%, transparent 62%);
  transform: translateX(-120%); transition: transform 0.9s var(--ease-lux);
}
.adv-card:hover::before { transform: translateX(120%); }
.adv-card:hover {
  transform: translateY(-14px) scale(1.015);
  border-color: var(--gold);
  box-shadow: 0 34px 78px rgba(0,0,0,0.62), 0 0 0 1px rgba(201,168,87,0.35);
}
.adv-card.active {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold-light), 0 34px 78px rgba(0,0,0,0.62);
}
.adv-card-foto { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.adv-card-foto img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 1s var(--ease-lux), filter 0.6s;
  filter: saturate(0.94);
}
.adv-card:hover .adv-card-foto img { transform: scale(1.07); filter: saturate(1.05); }

/* Ajuste específico de zoom para a foto da Thálita (focar no rosto/tronco) */
#img-thalita {
  transform: scale(1.35);
  transform-origin: center 25%;
}
.adv-card:hover #img-thalita {
  transform: scale(1.42);
}
.adv-card-foto::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(10,10,10,0.62) 74%, rgba(10,10,10,0.96) 100%);
}
/* ticks dourados no card */
.adv-card-foto::before {
  content: ''; position: absolute; top: 14px; left: 14px; z-index: 3;
  width: 26px; height: 26px; border-top: 1px solid var(--gold-light); border-left: 1px solid var(--gold-light);
  opacity: 0; transition: opacity 0.5s, transform 0.5s var(--ease-lux); transform: translate(6px, 6px);
}
.adv-card:hover .adv-card-foto::before { opacity: 0.9; }
.adv-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px 18px; z-index: 3; }
.adv-card-info h3 {
  font-family: var(--font-display); color: #fff; font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 600; line-height: 1.2;
}
.adv-card-info .oab {
  color: var(--gold-light); font-size: 11.5px; letter-spacing: 0.15em;
  margin-top: 5px; text-transform: uppercase; font-weight: 700;
}
.adv-card-info .esp { color: rgba(255,255,255,0.76); font-size: 13px; margin-top: 3px; }

/* ═══════════════════════════════════════
   NOVO LAYOUT: CARDS DE TEXTO LUX
   ═══════════════════════════════════════ */
.adv-text-group {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  position: relative; /* Para o bus vertical */
}



.adv-text-card {
  position: relative;
  display: inline-block;
  isolation: isolate;
  --spd: 3.2s;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s ease;
  will-change: transform;
  box-shadow: 0 10px 34px -10px rgba(176,141,62,0.22);
  width: 100%;
  text-align: left;
  border-radius: 4px;
  margin-bottom: 40px !important;
}
.adv-text-card:last-child {
  margin-bottom: 0 !important;
}
.adv-text-card.active, .adv-text-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px -6px rgba(176,141,62,0.35), 0 0 50px rgba(201,168,87,0.1);
}

/* Borda Cônica Girando */
.adv-text-card .lux-ring {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  padding: 1.4px; opacity: 0; transition: opacity 0.6s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  border-radius: 4px;
}
.adv-text-card .lux-ring::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 260%; aspect-ratio: 1; transform: translate(-50%,-50%);
  background: conic-gradient(from 0deg at 50% 50%,
    var(--gold-light) 0deg, rgba(201,168,87,0) 70deg,
    rgba(176,141,62,0) 290deg, var(--gold) 360deg);
  animation: luxTurn var(--spd) linear infinite;
}
.adv-text-card:hover .lux-ring, .adv-text-card.active .lux-ring { opacity: 1; }
@keyframes luxTurn { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Interior do Card */
.adv-text-card .lux-inner {
  position: relative; overflow: hidden; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 22px 28px;
  background: linear-gradient(225deg, rgba(176,141,62,0.10) 5%, #14110B 45%, #0A0A0A 70%);
  border: 1px solid rgba(201,168,87,0.30);
  border-radius: 4px;
  height: 100%;
}
.adv-text-card.on-light .lux-inner {
  background: linear-gradient(225deg, rgba(176,141,62,0.06) 5%, #FFFFFF 45%, #F5F2EA 75%);
  border-color: rgba(176,141,62,0.25);
}

.adv-text-card .card-content h4 {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.adv-text-card.active .card-content h4, .adv-text-card:hover .card-content h4 {
  color: var(--gold);
}
.adv-text-card .card-content p, .adv-text-card .card-content ul {
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.adv-text-card .card-content ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.adv-text-card .card-content li {
  display: flex; align-items: flex-start; gap: 8px;
}
.adv-text-card .card-content li::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background-color: var(--gold); border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}

/* ── CONEXÕES ELÉTRICAS E BALANÇA (Dynamic Circuit) ── */
.adv-connector {
  display: flex; align-items: center; justify-content: center;
  position: relative; width: 100%;
}
/* Balança */
.adv-connector .balancinha {
  position: relative; z-index: 2;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: #080808; border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: 0 0 25px rgba(201,168,87,0.25), inset 0 0 15px rgba(201,168,87,0.15);
  transition: transform 0.4s var(--ease-lux);
}

.adv-connector .balancinha img {
  width: 34px; opacity: 1;
  filter: drop-shadow(0 0 4px rgba(201,168,87,0.8));
}

/* ── Efeito Accordion do Card ── */
.adv-text-card .card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-lux), opacity 0.4s var(--ease-lux), padding 0.6s var(--ease-lux);
}
.adv-text-card.active .card-body {
  max-height: 300px;
  opacity: 1;
  padding-top: 12px;
}

/* ── Liquid Effect no Background ── */
.adv-text-card .lux-liquid {
  position: absolute; bottom: 0; left: -10%; width: 120%; height: 0;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 45%, #050505 100%);
  transition: height 0.65s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  z-index: 1; pointer-events: none;
  opacity: 0;
}
.adv-text-card.active .lux-liquid, .adv-text-card:hover .lux-liquid { height: 110%; opacity: 1; }
.adv-text-card .lux-wave {
  position: absolute; top: -11px; left: 0; width: 200%; height: 22px;
  animation: luxWave 4s linear infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.adv-text-card .lux-wave svg { width: 100%; height: 100%; display: block; }
@keyframes luxWave {
  0% { transform: translate3d(0, 0, 0) rotate(0.001deg); }
  100% { transform: translate3d(-50%, 0, 0) rotate(0.001deg); }
}

/* ── Bolhas do Liquid ── */
.adv-text-card .lux-bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  z-index: 2; pointer-events: none;
  opacity: 0; transition: opacity 0.3s;
}
.adv-text-card.active .lux-bubble, .adv-text-card:hover .lux-bubble { opacity: 1; animation: luxBubble 1.7s ease-in infinite; }
.adv-text-card .lux-bubble:nth-of-type(2) { width:6px;height:6px;left:16%;bottom:6%;animation-delay:0s;animation-duration:1.9s; }
.adv-text-card .lux-bubble:nth-of-type(3) { width:4px;height:4px;left:42%;bottom:9%;animation-delay:.35s;animation-duration:1.5s; }
.adv-text-card .lux-bubble:nth-of-type(4) { width:7px;height:7px;left:68%;bottom:4%;animation-delay:.7s;animation-duration:2.1s; }
.adv-text-card .lux-bubble:nth-of-type(5) { width:5px;height:5px;left:84%;bottom:11%;animation-delay:1s;animation-duration:1.6s; }
@keyframes luxBubble {
  0%   { transform: translateY(0) scale(1); opacity: .65; }
  50%  { opacity: .85; }
  100% { transform: translateY(-60px) scale(0.3); opacity: 0; }
}

/* ── Cores do Texto Ativo (Branco sobre Gold) ── */
.adv-text-card .card-content { position: relative; z-index: 3; }
.adv-text-card.active .card-content h4, .adv-text-card:hover .card-content h4 {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255,255,255,0.4);
}
.adv-text-card.active .card-content p, .adv-text-card:hover .card-content p,
.adv-text-card.active .card-content ul, .adv-text-card:hover .card-content ul,
.adv-text-card.active .card-content li, .adv-text-card:hover .card-content li {
  color: rgba(255,255,255,0.94);
}
.adv-text-card.active .card-content li::before, .adv-text-card:hover .card-content li::before {
  background-color: #ffffff;
}

/* ── DIFERENCIAIS ───────────────────────────────── */
.dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 40px 30px; }
.dif { text-align: center; padding: 0 12px; }
.dif-num {
  font-family: var(--font-display); font-size: 15px; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 16px; display: block;
}
.dif-icon {
  width: 66px; height: 66px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold); border-radius: 50%;
  transition: all 0.5s var(--ease-lux);
}
.dif:hover .dif-icon { background: var(--gold); transform: rotate(6deg) scale(1.06); }
.dif-icon svg { width: 27px; height: 27px; stroke: var(--gold); transition: stroke 0.4s; }
.dif:hover .dif-icon svg { stroke: #fff; }
.dif h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.dif p { color: var(--muted); font-size: 14.5px; }

/* ── COMPROMISSO ────────────────────────────────── */
.comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; position: relative; z-index: 1; }
.comp-card {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(201,168,87,0.18);
  padding: 38px 30px; transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), border-color 0.4s, background-color 0.4s;
  position: relative; overflow: hidden; transform-style: preserve-3d; will-change: transform;
}
.comp-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.5s var(--ease-lux);
}
.comp-card:hover { transform: translateY(-10px); border-color: var(--gold); background: rgba(255,255,255,0.06); box-shadow: var(--shadow-lift); }
.comp-card:hover::after { transform: scaleX(1); }
.comp-card svg { width: 30px; height: 30px; stroke: var(--gold-light); margin-bottom: 20px; }
.comp-card h3 { font-family: var(--font-display); color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.comp-card p { color: var(--muted-dark); font-size: 14.5px; }

/* ── FAQ GERAL (Alta Legibilidade e Contraste Premium) ── */
.faq-cols { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 0 clamp(32px, 4vw, 64px); 
  max-width: 1120px; 
  margin: 0 auto; 
}
.faq-item { 
  border-bottom: 1px solid rgba(176, 141, 62, 0.25); 
  background: transparent; 
  transition: all 0.35s var(--ease-lux);
  padding: 0 8px;
  border-radius: 4px;
}
.faq-item.open {
  background: rgba(201, 168, 87, 0.05);
  border-bottom-color: var(--gold);
}
.faq-q {
  width: 100%; 
  text-align: left; 
  padding: 24px 44px 18px 0;
  font-family: var(--font-display);
  font-size: 17.5px; 
  font-weight: 700; 
  color: #111111; 
  position: relative;
  line-height: 1.45;
  transition: color 0.3s;
  cursor: pointer;
}
.faq-q:hover { 
  color: var(--gold-dark); 
}
.faq-item.open .faq-q {
  color: var(--gold-dark);
}
.faq-q .faq-tag {
  display: block; 
  font-family: var(--font-body);
  font-size: 11.5px; 
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: var(--gold); 
  font-weight: 800; 
  margin-bottom: 6px;
}
.faq-q::after {
  content: ''; 
  position: absolute; 
  right: 8px; 
  top: 50%;
  width: 12px; 
  height: 12px; 
  border-right: 2.2px solid var(--gold); 
  border-bottom: 2.2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); 
  transition: transform 0.45s var(--ease-lux);
}
.faq-item.open .faq-q::after { 
  transform: translateY(-30%) rotate(225deg); 
}
.faq-a { 
  max-height: 0; 
  overflow: hidden; 
  transition: max-height 0.55s var(--ease-lux); 
}
.faq-item.open .faq-a { 
  max-height: 480px; 
}
.faq-a p { 
  color: #181818; 
  font-size: 16px; 
  line-height: 1.75; 
  font-weight: 450; 
  padding-bottom: 24px; 
  margin: 0; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── LOCALIZAÇÃO ────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: minmax(320px, 1fr) 1.2fr; gap: clamp(36px, 5vw, 70px); align-items: stretch; }
.loc-info h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 500; margin-bottom: 26px; }
.loc-info h2 em { font-style: normal; color: var(--gold); }
.loc-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.loc-row svg { width: 21px; height: 21px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.loc-row b { display: block; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 3px; }
.loc-row p, .loc-row a { color: var(--muted); font-size: 15px; margin: 0; }
.loc-row a:hover { color: var(--gold); }
.plantao-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--gold-light);
  padding: 12px 22px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; margin: 8px 0 26px;
}
.plantao-badge .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #3BC96A; animation: dotPulse 1.6s infinite; }
.loc-map { min-height: 420px; position: relative; padding: 20px; }
.loc-map iframe {
  width: 100%; height: 100%; min-height: 380px; border: 0;
  filter: grayscale(0.55) sepia(0.14); box-shadow: var(--shadow-lift);
}

/* ── CTA FINAL ──────────────────────────────────── */
.cta-final { text-align: center; position: relative; overflow: hidden; }
.cta-final .watermark { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-final h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 4vw, 48px); color: #fff; line-height: 1.25;
  max-width: 820px; margin: 0 auto 20px; position: relative; z-index: 1;
}
.cta-final h2 em { font-style: normal; color: var(--gold-light); }
.cta-final p { color: var(--muted-dark); max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; }

/* ── RODAPÉ ─────────────────────────────────────── */
.footer { background: #060606; color: var(--muted-dark); padding: 70px clamp(20px, 6vw, 72px) 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; max-width: 1240px; margin: 0 auto 52px; }
.footer-logo img { width: 180px; margin-bottom: 20px; }
.footer p { font-size: 14px; }
.footer h4 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px; font-weight: 700;
}
.footer-links a { display: block; font-size: 14px; margin-bottom: 11px; transition: color 0.3s, padding-left 0.3s; }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-oabs p { margin-bottom: 9px; font-size: 13.5px; }
.footer-oabs b { color: #fff; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,87,0.14); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1240px; margin: 0 auto; flex-wrap: wrap; gap: 14px;
  font-size: 12.5px; color: rgba(201,196,186,0.55);
}

/* ── WhatsApp flutuante ─────────────────────────── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 950;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  background: linear-gradient(135deg, #111, #000);
  border: 1px solid rgba(201,168,87,0.6);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  will-change: transform;
}
.wa-float:hover { 
  transform: translateY(-4px); 
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(201,168,87,0.3);
}
.wa-float svg { 
  width: 30px; height: 30px; 
  fill: var(--gold-light); 
  position: relative; z-index: 2; 
  transition: fill 0.3s; 
}
.wa-float:hover svg { fill: #fff; }



/* ── Responsivo ─────────────────────────────────── */
@media (max-width: 1020px) {
  .adv-constellation { grid-template-columns: 1fr; grid-template-rows: auto; gap: 40px; }
  .adv-scale-center { grid-column: 1 !important; grid-row: 1 !important; width: 140px; margin: 10px auto; }
  .adv-card { grid-column: 1 !important; grid-row: auto !important; max-width: 380px; margin: 0 auto; overflow: visible; }
  
  /* Exibição estática abaixo da foto em mobile */
  .adv-drawer {
    position: relative; top: auto; bottom: auto; left: auto; right: auto;
    width: 100%; opacity: 1; pointer-events: auto;
    transform: none !important; margin: 0 !important;
    border-top: none; border-radius: 0 0 4px 4px;
    padding: 24px 20px;
    box-shadow: none;
  }
  .adv-card-cta { display: none; } /* O CTA vira o próprio botão do WhatsApp no drawer */
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; background: rgba(10,10,10,0.97);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: all 0.45s var(--ease-lux);
    z-index: 1000;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { color: #fff !important; font-size: 16px !important; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
  .sobre-grid, .loc-grid, .faq-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.15s !important; }
  .rv { opacity: 1; transform: none; }
}

/* ── Hero: rodapé de pilares (fora do vídeo central) ── */
.hero-foot {
  position: absolute; bottom: 96px; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; padding: 0 24px;
}
.hero-foot .hero-pillars { margin: 0; gap: clamp(18px, 3.5vw, 48px); }
.hero-foot .hero-pillar {
  font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); position: relative; padding-left: 16px;
}
.hero-foot .hero-pillar::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--gold-light); border-radius: 50%;
}

/* Logo do hero com brilho passando (efeito "desenhando") */
.hero-logo {
  width: clamp(320px, 45vw, 600px); margin: 0 auto 30px;
  filter: drop-shadow(0 8px 40px rgba(176,141,62,0.5));
  animation: logoReveal 1.8s var(--ease-lux) both;
}
@keyframes logoReveal {
  0%   { opacity: 0; transform: translateY(24px) scale(0.9); filter: drop-shadow(0 0 0 rgba(176,141,62,0)) brightness(1.5); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 8px 40px rgba(176,141,62,0.5)) brightness(1); }
}

/* Bloco de apoio na constelação */
.adv-note {
  max-width: 330px; align-self: center;
  border-left: 2px solid var(--gold); padding: 4px 0 4px 22px;
}
.adv-note p { color: var(--muted-dark); font-size: 15px; }

@media (max-width: 1020px) { .adv-note { display: none; } }
@media (max-width: 860px)  { .hero-foot { bottom: 78px; } .hero-foot .hero-pillars { flex-direction: column; gap: 10px; align-items: center; } }

/* ═══════════════════════════════════════════════
   BOTÃO LUX — magnético + liquid fill + borda cônica
   ═══════════════════════════════════════════════ */
.btn-lux {
  position: relative; display: inline-block; isolation: isolate;
  --spd: 3.2s;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease;
  will-change: transform;
  box-shadow: 0 10px 34px -10px rgba(176,141,62,0.42);
}
.btn-lux.attracted { box-shadow: 0 22px 58px -6px rgba(176,141,62,0.55), 0 0 90px rgba(201,168,87,0.14); }

/* borda cônica girando */
.btn-lux .lux-ring {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  padding: 1.4px; opacity: 0; transition: opacity 0.6s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.btn-lux .lux-ring::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 240%; aspect-ratio: 1; transform: translate(-50%,-50%);
  background: conic-gradient(from 0deg at 50% 50%,
    #C9A857 0deg, rgba(201,168,87,0) 70deg,
    rgba(176,141,62,0) 290deg, #B08D3E 360deg);
  animation: luxTurn var(--spd) linear infinite;
}
.btn-lux:hover .lux-ring { opacity: 1; }
@keyframes luxTurn { to { transform: translate(-50%,-50%) rotate(360deg); } }

.btn-lux .lux-inner {
  position: relative; overflow: hidden; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 18px 38px;
  background: linear-gradient(225deg, rgba(176,141,62,0.10) 5%, #14110B 45%, #0A0A0A 70%);
  border: 1px solid rgba(201,168,87,0.30);
}

/* camada líquida que sobe */
.btn-lux .lux-liquid {
  position: absolute; bottom: 0; left: -10%; width: 120%; height: 0;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  transition: height 0.62s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  z-index: 1; pointer-events: none;
  opacity: 0;
}
.btn-lux:hover .lux-liquid { height: 110%; opacity: 1; }
.btn-lux .lux-wave {
  position: absolute; top: -11px; left: 0; width: 200%; height: 22px;
  animation: luxWave 4s linear infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.btn-lux .lux-wave svg { width: 100%; height: 100%; display: block; }
/* bolhas */
.btn-lux .lux-bubble {
  position: absolute; border-radius: 50%; z-index: 2; pointer-events: none;
  background: rgba(255,247,224,0.42); opacity: 0; transition: opacity 0.3s;
}
.btn-lux:hover .lux-bubble { opacity: 1; animation: luxBubble 1.7s ease-in infinite; }
.btn-lux .lux-bubble:nth-of-type(1) { width:6px;height:6px;left:16%;bottom:6%;animation-delay:0s;animation-duration:1.9s; }
.btn-lux .lux-bubble:nth-of-type(2) { width:4px;height:4px;left:42%;bottom:9%;animation-delay:.35s;animation-duration:1.5s; }
.btn-lux .lux-bubble:nth-of-type(3) { width:7px;height:7px;left:68%;bottom:4%;animation-delay:.7s;animation-duration:2.1s; }
.btn-lux .lux-bubble:nth-of-type(4) { width:5px;height:5px;left:84%;bottom:11%;animation-delay:1s;animation-duration:1.6s; }
@keyframes luxBubble {
  0%   { transform: translateY(0) scale(1); opacity: .65; }
  50%  { opacity: .85; }
  100% { transform: translateY(-58px) scale(0.3); opacity: 0; }
}

.btn-lux .lux-text {
  position: relative; z-index: 3;
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-light);
  display: flex; align-items: center; gap: 11px;
  transition: color 0.45s ease, text-shadow 0.45s ease;
}
.btn-lux:hover .lux-text { color: #fff; text-shadow: 0 0 18px rgba(255,255,255,0.4); }
.btn-lux .lux-text svg { width: 18px; height: 18px; }

/* variante clara (sobre off-white) */
.btn-lux.on-light .lux-inner { background: linear-gradient(225deg, rgba(176,141,62,0.08) 5%, #FFFFFF 45%, #F5F2EA 75%); border-color: rgba(176,141,62,0.35); }
.btn-lux.on-light .lux-text { color: var(--gold-dark); }
.btn-lux.on-light:hover .lux-text { color: #fff; }

.btn-lux.btn-sm .lux-inner { padding: 4px 8px; height: 60px; justify-content: center; align-items: center; width: 100%; box-sizing: border-box; }
.btn-lux.btn-sm .lux-text { font-size: 11px; letter-spacing: 0.05em; white-space: normal; line-height: 1.2; text-align: center; display: block; width: 100%; }
.btn-lux.btn-sm .lux-text svg { width: 14px; height: 14px; display: inline-block; vertical-align: middle; margin-right: 4px; margin-top: -2px; }

@media (max-width: 480px) { .btn-lux .lux-inner { padding: 16px 26px; } .btn-lux .lux-text { font-size: 12px; } }

/* ── Custom overrides for Advogadas Section Accordion ───── */
.adv-painel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.adv-text-card.active .adv-painel {
  max-height: 1500px;
}

.adv-painel-content {
  padding-top: 24px;
}

.adv-painel-content p, .adv-painel-content ul {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
  white-space: normal;
}

.adv-painel-content ul {
  padding-left: 20px;
}

.adv-painel-content ul li {
  margin-bottom: 6px;
}

.adv-painel-content strong {
  color: var(--gold-light);
  font-weight: 600;
}

.adv-painel-content .contact-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}

.adv-painel-content .contact-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Override para o líquido não ser dourado quando ativo, garantindo contraste */
.adv-text-card .lux-liquid {
  background: linear-gradient(180deg, #2b2b2b 0%, #171717 50%, #080808 100%) !important;
}
.adv-text-card.active .lux-liquid, 
.adv-text-card:hover .lux-liquid {
  height: 150% !important;
}

/* ── LIQUID FILL NOVO ── */
@keyframes fillBorderTurn {
    0% { transform: rotate(0); }
    to { transform: rotate(360deg); }
}
@keyframes fillBorderTurnWithTranslate {
    0% { transform: translate3d(-50%, -50%, 0) rotate(0); }
    to { transform: translate3d(-50%, -50%, 0) rotate(360deg); }
}
@keyframes fillWaveFloat {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.fill-wrapper {
    isolation: isolate;
    border-radius: 4px;
    position: relative;
    width: 100%;
    margin-bottom: 40px !important;
    --animation-speed: 3.2s;
    box-shadow: 0 10px 40px -10px rgba(176,141,62, 0.35);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    cursor: pointer;
}
.fill-wrapper:last-child { margin-bottom: 0 !important; }
.fill-wrapper:hover, .fill-wrapper.active {
    box-shadow: 0 16px 40px -6px rgba(176,141,62,0.35), 0 0 50px rgba(201,168,87,0.1);
}

.fill-wrapper .mask-layer-1,
.fill-wrapper .mask-layer-2 { opacity: 1; }

.fill-wrapper .mask-layer-1,
.fill-wrapper .animated-border {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.fill-wrapper .mask-layer-1:before,
.fill-wrapper .animated-border:before {
    content: ""; float: left; padding-top: 100%;
}

.fill-wrapper .mask-layer-1:after,
.fill-wrapper .animated-border:after {
    clear: both; content: ""; display: block;
}

.fill-wrapper .mask-layer-1 {
    opacity: 0; pointer-events: none; transition: 1s ease opacity;
}

.fill-wrapper .mask-layer-1 * {
    height: 100%; left: 0; position: absolute; top: 0; width: 100%;
}

.fill-wrapper .animated-border,
.fill-wrapper .blur-layer,
.fill-wrapper .svg-container {
    animation: fillBorderTurn var(--animation-speed) infinite linear;
    background-image: conic-gradient(from 0 at 50% 50%,
        var(--gold-light) 0deg, rgba(176,141,62, 0) 60deg,
        rgba(201,168,87, 0) 300deg, var(--gold) 360deg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fill-wrapper .svg-mask {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0534 15.732C13.8444 15.283 14.2848 14.8489 14.7326 15.051C14.8296 15.0959 14.9043 15.1707 14.949 15.268C15.1506 15.717 14.7177 16.1511 14.2698 15.949C14.1728 15.9041 14.0982 15.8293 14.0534 15.732Z' fill='black'/%3E%3Cpath d='M18.8001 13.5093C19.0016 13.0603 18.5687 12.6263 18.1209 12.8283C18.0239 12.8732 17.9492 12.9481 17.9045 13.0453C17.6955 13.4944 18.1358 13.9284 18.5837 13.7264C18.6807 13.6815 18.7553 13.6066 18.8001 13.5093Z' fill='black'/%3E%3Cpath d='M0.949043 2.732C1.15057 2.28297 0.717663 1.84891 0.269836 2.05097C0.172806 2.09587 0.098162 2.17071 0.0533793 2.268C-0.155607 2.71703 0.284759 3.15109 0.732587 2.94903C0.829616 2.90413 0.90426 2.82929 0.949043 2.732Z' fill='black'/%3E%3Cpath d='M26.9489 7.732C27.151 7.28297 26.7169 6.84891 26.2679 7.05097C26.1706 7.09587 26.0958 7.17071 26.0508 7.268C25.8488 7.71703 26.2828 8.15109 26.7319 7.94903C26.8292 7.90413 26.904 7.82929 26.9489 7.732Z' fill='black'/%3E%3Cpath d='M13.0534 5.732C12.8444 5.28297 13.2848 4.84891 13.7326 5.05097C13.8296 5.09587 13.9043 5.17071 13.949 5.268C14.1506 5.71703 13.7177 6.15109 13.2698 5.94903C13.1728 5.90413 13.0982 5.82929 13.0534 5.732Z' fill='black'/%3E%3Cpath d='M10.0534 17.732C9.84439 17.283 10.2848 16.8489 10.7326 17.051C10.8296 17.0959 10.9043 17.1707 10.949 17.268C11.1506 17.717 10.7177 18.1511 10.2698 17.949C10.1728 17.9041 10.0982 17.8293 10.0534 17.732Z' fill='black'/%3E%3Cpath d='M15.0534 21.732C14.8444 21.283 15.2848 20.8489 15.7326 21.051C15.8296 21.0959 15.9043 21.1707 15.949 21.268C16.1506 21.717 15.7177 22.1511 15.2698 21.949C15.1728 21.9041 15.0982 21.8293 15.0534 21.732Z' fill='black'/%3E%3C/svg%3E");
    mask-repeat: repeat; -webkit-mask-repeat: repeat;
}

.fill-wrapper .blur-layer {
    filter: blur(10px); opacity: .25;
}

.fill-wrapper .animated-border {
    animation-name: fillBorderTurnWithTranslate;
}

.fill-wrapper .mask-layer-2 {
    border-radius: 4px; content: "";
    height: 100%; inset: 0; left: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor; -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; padding: 2px;
    pointer-events: none; position: absolute;
    top: 0; transition: 1s ease opacity;
    width: 100%; z-index: 1;
}

.fill-wrapper .fill-inner {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    background: linear-gradient(225deg, rgba(176,141,62,0.10) 5%, #14110B 45%, #0A0A0A 70%);
    border: 1px solid rgba(201,168,87,0.30);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    padding: 22px 28px;
    min-height: 68px; /* altura mínima para o título ficar visível */
}
.fill-wrapper.on-light .fill-inner {
    background: linear-gradient(225deg, rgba(176,141,62,0.06) 5%, #FFFFFF 45%, #F5F2EA 75%);
    border-color: rgba(176,141,62,0.25);
    box-shadow: none;
}

/* Camada líquida escurecida para contraste */
.fill-wrapper .liquid-layer {
    position: absolute; bottom: 0; left: -10%; width: 120%; height: 0%;
    background: linear-gradient(180deg, #2b2b2b 0%, #171717 50%, #080808 100%);
    z-index: 1; transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fill-wrapper .liquid-wave {
    position: absolute; top: -11px; left: 0; width: 200%; height: 22px;
    animation: fillWaveFloat 4s linear infinite;
    will-change: transform;
}
.fill-wrapper .liquid-wave svg { width: 100%; height: 100%; }

.fill-wrapper:hover .liquid-layer, .fill-wrapper.active .liquid-layer {
    height: 120%;
}

.fill-wrapper .bubble {
    position: absolute; border-radius: 50%;
    background: rgba(201,168,87, 0.3);
    z-index: 2; pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
}

.fill-wrapper:hover .bubble, .fill-wrapper.active .bubble {
    opacity: 1; animation: fillBubbleRise 1.5s ease-in infinite;
}

.fill-wrapper .bubble:nth-child(1) { width: 6px; height: 6px; left: 15%; bottom: 5%; animation-delay: 0s; animation-duration: 1.8s; }
.fill-wrapper .bubble:nth-child(2) { width: 4px; height: 4px; left: 40%; bottom: 8%; animation-delay: 0.3s; animation-duration: 1.4s; }
.fill-wrapper .bubble:nth-child(3) { width: 8px; height: 8px; left: 65%; bottom: 3%; animation-delay: 0.6s; animation-duration: 2s; }
.fill-wrapper .bubble:nth-child(4) { width: 5px; height: 5px; left: 80%; bottom: 10%; animation-delay: 0.9s; animation-duration: 1.6s; }
.fill-wrapper .bubble:nth-child(5) { width: 3px; height: 3px; left: 30%; bottom: 6%; animation-delay: 1.2s; animation-duration: 1.3s; }

@keyframes fillBubbleRise {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-60px) scale(0.3); opacity: 0; }
}

.fill-wrapper .card-content { position: relative; z-index: 3; width: 100%; }
.fill-wrapper .card-content h4 { font-family: var(--font-display); font-size: 15.5px; color: var(--ink); margin-bottom: 8px; transition: color 0.3s; }
.fill-wrapper.active .card-content h4, .fill-wrapper:hover .card-content h4 { color: #ffffff; text-shadow: 0 0 18px rgba(255,255,255,0.4); }




/* ── RESPONSIVIDADE (MOBILE & TABLET) ────────────────── */
@media (max-width: 992px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .adv-constellation {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 60px;
    justify-items: center;
  }
  .adv-constellation > * {
    grid-column: 1 !important;
    grid-row: auto !important;
    transform: none !important;
  }
  
  /* Ordenação exata no mobile (Foto -> Textos) */
  .adv-constellation { display: flex; flex-direction: column; }
  #foto-cintia { order: 1; }
  #text-cintia { order: 2; }
  #foto-talita { order: 3; }
  #text-talita { order: 4; }
  #foto-thalita { order: 5; }
  #text-thalita { order: 6; }
  .adv-connector { display: none; } /* Esconder conectores no mobile */

  .adv-card { margin-bottom: 20px; }
  .adv-text-group { padding: 0 16px; margin-bottom: 60px; }
  .adv-bus { display: none; } /* Ocultar linha conectora no mobile */
  .hero-pillars { flex-direction: column; align-items: center; gap: 16px; }
  .hero-content { padding-top: 80px; }
}

@media (max-width: 768px) {
  .header { padding: 16px 20px; }
  .sec-head { margin-bottom: 40px; }
  .footer-content { flex-direction: column; text-align: center; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer-logo { display: flex; flex-direction: column; align-items: center; }
  .footer-links { justify-content: center; align-items: center; }
  .area-link { font-size: 11px; }
  .footer-seals { grid-template-columns: 1fr; gap: 12px; margin: 28px 0 20px; padding: 20px 0; }
  .seal-card { 
    justify-content: flex-start; 
    text-align: left; 
    max-width: 320px; 
    margin: 0 auto;
    width: 100%;
    padding: 14px 20px;
  }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; align-items: center; }
  
  .hero-video {
    object-position: 60% center; 
  }

  /* Badge "ADVOCACIA · SÃO JOSÉ DO RIO PRETO · SP" no celular — cor dourada + peso maior */
  .hero-eyebrow {
    color: var(--gold) !important;
    font-weight: 800 !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    white-space: normal !important;
    max-width: 96% !important;
    line-height: 1.45 !important;
    text-align: center !important;
    box-sizing: border-box !important;
    background: rgba(6, 4, 2, 0.88);
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid rgba(176, 141, 62, 0.80);
    text-shadow: 0 1px 8px rgba(0,0,0,1), 0 0 12px rgba(0,0,0,0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.65);
    margin: 0 auto 20px;
    display: inline-block;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    display: none;
  }
}

/* ── CURSOR DOURADO PREMIUM + RASTRO DE PARTÍCULAS (DESKTOP) ─── */
/* Esconde seta somente em telas com ponteiro fino (mouse/trackpad) */
@media (pointer: fine) {
  html, html * { cursor: none !important; }
}


.lux-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFE08A 0%, #C9A857 55%, #8A6C2D 100%);
  box-shadow:
    0 0 10px rgba(201, 168, 87, 0.8),
    0 0 22px rgba(201, 168, 87, 0.4),
    0 0 40px rgba(176, 141, 62, 0.2);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.3s ease, width 0.25s var(--ease-lux), height 0.25s var(--ease-lux), box-shadow 0.3s ease, filter 0.15s ease;
}

.lux-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 87, 0.7);
  background: rgba(201, 168, 87, 0.04);
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  will-change: transform, width, height;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

/* Partículas — gotinhas do rastro */
.lux-particle {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,224,138,0.9) 0%, rgba(201,168,87,0.6) 55%, transparent 100%);
  box-shadow: 0 0 8px rgba(201, 168, 87, 0.6), 0 0 18px rgba(201, 168, 87, 0.2);
  pointer-events: none;
  z-index: 99996;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-100px, -100px, 0) scale(0.5);
}

.lux-cursor-dot.visible,
.lux-cursor-ring.visible {
  opacity: 1;
}

/* Dot expande e brilha no hover */
body.is-hovering ~ .lux-cursor-dot,
.lux-cursor-dot.hover {
  width: 14px; height: 14px;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #FFE08A 40%, #C9A857 100%);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.9),
    0 0 28px rgba(201, 168, 87, 0.8),
    0 0 50px rgba(176, 141, 62, 0.4);
}

/* Ring expande no hover (tamanho gerenciado via JS) */
body.is-hovering ~ .lux-cursor-ring,
.lux-cursor-ring.hover {
  border-color: rgba(201, 168, 87, 0.9);
  background: rgba(201, 168, 87, 0.08);
  box-shadow: 0 0 16px rgba(201, 168, 87, 0.2), inset 0 0 8px rgba(201, 168, 87, 0.06);
}

/* Pulso no clique */
body.is-clicking ~ .lux-cursor-dot {
  filter: brightness(2) saturate(1.5);
  box-shadow: 0 0 22px rgba(201, 168, 87, 1), 0 0 45px rgba(201, 168, 87, 0.6);
}

/* ── CARROSSEL DE DEPOIMENTOS (MARQUEE INFINITO) ── */
.depo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 40px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.depo-carousel:active {
  cursor: grabbing;
}
.depo-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  align-items: stretch;
}
.depo-card {
  flex: 0 0 clamp(290px, 85vw, 360px);
  width: clamp(290px, 85vw, 360px);
  min-height: 290px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(201, 168, 87, 0.22);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.depo-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(201, 168, 87, 0.18);
}
.depo-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
  justify-content: space-between;
}
.depo-card-content p {
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}
.depo-author {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 168, 87, 0.2);
}
.depo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}
.depo-area {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 4px;
}

/* ── SELOS DE SEGURANÇA E ÉTICA DO RODAPÉ ─────── */
.footer-seals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 36px 0 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 87, 0.15);
  border-bottom: 1px solid rgba(201, 168, 87, 0.15);
}

.seal-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(201, 168, 87, 0.04) 0%, rgba(10, 10, 10, 0.6) 100%);
  border: 1px solid rgba(201, 168, 87, 0.2);
  border-radius: 6px;
  transition: transform 0.3s var(--ease-lux), border-color 0.3s ease, box-shadow 0.3s ease;
}

.seal-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 8px 20px -6px rgba(201, 168, 87, 0.18);
}

.seal-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 87, 0.08);
  border: 1px solid rgba(201, 168, 87, 0.3);
  color: var(--gold-light);
}

.seal-icon svg {
  width: 20px;
  height: 20px;
}

.seal-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.seal-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

.seal-sub {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.1px;
}

/* Enquadramento e Zoom na foto da Dra. Thálita */
#img-thalita {
  transform: scale(1.42);
  transform-origin: center 18%;
}
#foto-thalita:hover #img-thalita {
  transform: scale(1.48);
  filter: saturate(1.05);
}

/* ── Carrossel de Depoimentos ── */
.depo-carousel {
  overflow: hidden; 
  width: 100%;
  cursor: grab;
  padding: 20px 0 60px; /* space for box-shadow hover */
  user-select: none;
  -webkit-user-select: none;
}
.depo-carousel:active { cursor: grabbing; }
.depo-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
/* Depo card re-uses .adv-card structure where possible */
.depo-card {
  flex: 0 0 clamp(280px, 85vw, 320px);
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(201,168,87,0.22);
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux), border-color 0.45s;
}
.depo-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 5;
}
.depo-card-content p {
  font-style: italic; font-size: 15px; flex-grow: 1; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0;
}
.depo-author {
  margin-top: 10px;
}
.depo-name {
  font-weight: 600; font-family: var(--font-display); font-size: 16px; color: #fff;
}
.depo-area {
  font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px;
}
.depo-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 5;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.5s var(--ease-lux);
}
.depo-card:hover::after { transform: scaleX(1); }
.depo-card::before {
  content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(201,168,87,0.22) 50%, transparent 62%);
  transform: translateX(-120%); transition: transform 0.9s var(--ease-lux);
}
.depo-card:hover::before { transform: translateX(120%); }
.depo-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: var(--gold);
  box-shadow: 0 34px 78px rgba(0,0,0,0.62), 0 0 0 1px rgba(201,168,87,0.35);
}
/* Corner ticks */
.depo-card-corner {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  width: 26px; height: 26px; border-top: 1px solid var(--gold-light); border-left: 1px solid var(--gold-light);
  opacity: 0; transition: opacity 0.5s, transform 0.5s var(--ease-lux); transform: translate(6px, 6px);
}
.depo-card:hover .depo-card-corner { opacity: 0.9; transform: translate(0,0); }
/* Pulse dot at bottom right */
.depo-pulse {
  position: absolute; bottom: 20px; right: 20px; z-index: 6;
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(201,168,87,0.4);
  display: flex; align-items: center; justify-content: center;
}
.depo-pulse .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: dotPulse 1.6s infinite;
}

/* ═══════════════════════════════════════════════════════════
   ESTILOS EXCLUSIVOS — LANDING PAGE DRA. TALITA TRABALHISTA
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Landing ── */
.hero-cred-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 87, 0.12);
  border: 1px solid rgba(201, 168, 87, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}
.hero-cred-line svg {
  color: var(--gold);
}

.hero-btns,
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border: 1px solid rgba(201, 168, 87, 0.45);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.btn-ghost-gold:hover {
  background: rgba(201, 168, 87, 0.18);
  border-color: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 141, 62, 0.25);
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
}
.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-badge-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.hero-badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 168, 87, 0.5);
}

/* ── Hero Stats Bar (+1.200 clientes) ── */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin: 10px auto 0;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(20, 17, 11, 0.82) 0%, rgba(10, 10, 10, 0.92) 100%);
  border: 1px solid rgba(201, 168, 87, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(201, 168, 87, 0.2);
}
.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero-stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 87, 0.3), transparent);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  background: linear-gradient(180deg, #FFFFFF 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .hero {
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero-content {
    padding: 80px 14px 24px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .hero-logo {
    width: clamp(220px, 68vw, 340px);
    margin-bottom: 18px;
    max-width: 90%;
  }
  .hero-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    padding: 6px 12px !important;
    white-space: normal !important;
    max-width: 96% !important;
    line-height: 1.45 !important;
    text-align: center !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    background: rgba(10, 10, 10, 0.88) !important;
    border: 1px solid rgba(201, 168, 87, 0.5) !important;
    border-radius: 4px;
    margin: 0 auto 18px !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    display: none !important;
  }
  .hero h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.24;
    color: #FFFFFF !important;
    text-shadow: 0 3px 20px rgba(0,0,0,0.95), 0 0 30px rgba(0,0,0,0.9) !important;
    font-weight: 700;
    padding: 0 4px;
    word-break: break-word;
  }
  .hero h1 em {
    color: var(--gold-light) !important;
    font-style: italic;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(201,168,87,0.75), 0 3px 18px rgba(0,0,0,0.95) !important;
    display: inline-block;
  }
  .hero-sub {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.95) !important;
    margin: 16px auto 20px !important;
    padding: 0 4px;
    font-weight: 450;
    word-break: break-word;
  }
  .hero-cred-line {
    background: rgba(14, 12, 8, 0.92);
    border: 1.5px solid var(--gold);
    color: #FFFFFF;
    font-size: 11px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9);
    padding: 8px 12px;
    margin: 0 auto 20px;
    max-width: 96%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    border-radius: 6px;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 6px;
  }
  .hero-cred-line svg {
    flex-shrink: 0;
  }
  .hero-cred-line span {
    color: #FFFFFF;
  }
  .hero-btns,
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 16px !important;
    margin: 14px auto 18px !important;
    padding: 0 4px;
    box-sizing: border-box;
  }
  .hero-btns .btn-lux,
  .hero-actions .btn-lux,
  .hero-btns .btn-ghost-gold,
  .hero-actions .btn-ghost-gold {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .hero-badges {
    font-size: 11.5px;
    color: #FFFFFF;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 4px;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(16, 13, 8, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  }
  .hero-stat-card:not(:last-child)::after {
    display: block;
    position: static;
    width: 60%;
    height: 1px;
    background: rgba(201, 168, 87, 0.3);
    margin: 16px auto 0;
  }
  .hero-stat-num {
    font-size: 34px;
  }
  .hero-stat-label {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.88);
  }
}

/* ── Dobra 2: Grid de Situações (#situacoes) ── */
.situacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.situacao-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(176, 141, 62, 0.22);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), border-color 0.3s;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.situacao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-lux);
}
.situacao-card:hover::before {
  transform: scaleX(1);
}
.situacao-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 141, 62, 0.55);
  box-shadow: 0 24px 50px rgba(176, 141, 62, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}
.situacao-card-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.situacao-card-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(176, 141, 62, 0.2);
}
.situacao-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 14px;
}
.situacao-card p {
  font-size: 15px;
  line-height: 1.68;
  color: #222222;
  font-weight: 450;
  margin: 0;
  flex-grow: 1;
}

/* ── Card de Fechamento Estratégico (Destaque Dark Gold Premium) ── */
.situacao-fechamento {
  margin-top: 56px;
  padding: 34px 44px;
  background: linear-gradient(135deg, #13100A 0%, #1D180F 50%, #0E0B07 100%);
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.situacao-fechamento::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  box-shadow: 0 0 14px rgba(201, 168, 87, 0.85);
}
.situacao-fechamento-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 87, 0.15);
  border: 1px solid rgba(201, 168, 87, 0.5);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(201, 168, 87, 0.25);
}
.situacao-fechamento-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.situacao-fechamento-text h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 23px);
  color: #FFFFFF;
  margin: 0;
  font-weight: 500;
  line-height: 1.35;
}
.situacao-fechamento-text h3 strong {
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(201, 168, 87, 0.4);
}
.situacao-fechamento-text p {
  font-size: clamp(14.5px, 1.7vw, 16.5px);
  color: rgba(255, 255, 255, 0.90);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}
.situacao-fechamento-text p strong {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 87, 0.6);
  text-underline-offset: 3px;
}
.btn-fechamento {
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .situacoes-grid {
    grid-template-columns: 1fr;
  }
  .situacao-fechamento {
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
    gap: 22px;
  }
  .situacao-fechamento-badge {
    margin: 0 auto;
  }
  .btn-fechamento {
    width: 100%;
  }
}

/* ── Dobra 3: O Que a Lei Diz (#leis) ── */
.lei-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.lei-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(201, 168, 87, 0.25);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-lux), border-color 0.4s, box-shadow 0.4s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.lei-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 168, 87, 0.12);
}
.lei-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 87, 0.25) 0%, rgba(176, 141, 62, 0.1) 100%);
  border: 1px solid rgba(201, 168, 87, 0.45);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}
.lei-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 16px;
}
.lei-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.lei-disclaimer {
  margin-top: 36px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

@media (max-width: 860px) {
  .lei-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Dobra 4: A Advogada — Dra. Talita (#advogada) ── */
.adv-single-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 36px;
}
.adv-single-img-box {
  position: relative;
}
.adv-single-img-box img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(201, 168, 87, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  display: block;
}
.adv-single-img-glow {
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(201, 168, 87, 0.2);
  pointer-events: none;
}
.adv-single-badge-oab {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(201, 168, 87, 0.4);
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  color: #FFFFFF;
}
.adv-single-badge-oab h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}
.adv-single-badge-oab span {
  font-size: 12.5px;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.adv-single-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.adv-single-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}
.adv-single-body .adv-oab-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.adv-single-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.adv-proximidade-card {
  background: linear-gradient(135deg, rgba(201, 168, 87, 0.12) 0%, rgba(10, 10, 10, 0.6) 100%);
  border: 1px solid rgba(201, 168, 87, 0.35);
  padding: 24px 28px;
  margin-top: 10px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.adv-proximidade-card svg {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.adv-proximidade-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}
.adv-proximidade-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 960px) {
  .adv-single-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .adv-single-img-box {
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ── Dropdown / Accordion Interativo de Especialidades no Rodapé ── */
.footer-accordion {
  margin: 8px 0 14px;
  border: 1px solid rgba(201, 168, 87, 0.35);
  border-radius: 4px;
  background: rgba(201, 168, 87, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}
.footer-accordion[open] {
  background: rgba(201, 168, 87, 0.12);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}
.footer-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: color 0.2s, background 0.2s;
}
.footer-accordion summary::-webkit-details-marker {
  display: none;
}
.footer-accordion summary::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 8px;
}
.footer-accordion[open] summary::after {
  transform: rotate(-135deg);
}
.footer-accordion-content {
  padding: 8px 14px 12px;
  border-top: 1px solid rgba(201, 168, 87, 0.25);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-accordion-content a {
  color: #FFFFFF !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 4px 0 !important;
  text-decoration: none !important;
  transition: color 0.2s, transform 0.2s !important;
}
.footer-accordion-content a:hover {
  color: var(--gold-light) !important;
  transform: translateX(4px) !important;
}


