/* ============================================
   ADVOCACIA FERNANDES — Premium CSS
   Valen Growth & Strategy
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }

:root {
  --vinho:       #4A0000;
  --vinho-dark:  #1E0000;
  --vinho-mid:   #2D0000;
  --vinho-glass: rgba(74, 0, 0, 0.12);
  --dourado:     #D4AF37;
  --dourado-lt:  #F0D060;
  --dourado-dk:  #A88A1E;
  --preto:       #080808;
  --preto-soft:  #111111;
  --branco:      #FFFFFF;
  --texto:       #F0EAD6;
  --texto-sub:   #B0A070;
  --borda:       rgba(212,175,55,0.18);
  --borda-hover: rgba(212,175,55,0.50);
  --glow-ouro:   0 0 40px rgba(212,175,55,0.18);
  --glow-forte:  0 0 60px rgba(212,175,55,0.30);
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--preto);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1,h2,h3,h4,h5 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; }

.text-gold {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-lt), var(--dourado-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.text-muted { color: var(--texto-sub); }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 70px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* --- Section Header --- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 1px;
  background: var(--dourado);
}
.section-header { margin-bottom: 60px; }
.section-header p { color: var(--texto-sub); max-width: 600px; margin-top: 16px; font-size: 1.05rem; }
.divider-gold {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-lt));
  margin: 20px 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  padding: 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--borda);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0;
}
/* Logo container — overflow:hidden corta o whitespace transparente do PNG */
.nav-logo {
  display: flex; align-items: center;
  height: 98px; /* janela visível */
  overflow: hidden;
  flex-shrink: 0;
}
/* Imagem 3× maior que a janela → whitespace é clipado, conteúdo aparece grande */
.nav-logo img {
  height: 285px;
  width: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.35));
  transition: height 0.4s var(--ease);
}
.navbar.scrolled .nav-logo { height: 66px; }
.navbar.scrolled .nav-logo img { height: 195px; }
.nav-logo span { color: var(--dourado); }
.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--texto-sub);
  font-weight: 400;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--texto-sub);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--texto); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-lt));
  color: var(--preto) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease) !important;
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(212,175,55,0.4) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
  outline: none; -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--texto); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer; border: none;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--dourado-dk), var(--dourado), var(--dourado-lt));
  color: var(--preto);
  box-shadow: 0 4px 24px rgba(212,175,55,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s var(--ease);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(212,175,55,0.45); }

.btn-outline {
  background: transparent;
  color: var(--texto);
  border: 1px solid var(--borda);
}
.btn-outline:hover { border-color: var(--borda-hover); background: rgba(212,175,55,0.06); }

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(37,211,102,0.4); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(74,0,0,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(74,0,0,0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(30,0,0,0.6) 0%, transparent 50%),
    #080808;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  min-height: calc(100vh - 100px);
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dourado); margin-bottom: 28px;
}
.hero-badge i { font-size: 0.65rem; }
.hero-title { margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--dourado); }
.hero-subtitle {
  font-size: 1.05rem; color: var(--texto-sub);
  max-width: 480px; line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 40px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.hero-stat .num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 700;
  color: var(--dourado); display: block;
}
.hero-stat .label { font-size: 0.78rem; color: var(--texto-sub); margin-top: 2px; }

/* Foto frame */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.foto-wrap {
  position: relative;
  width: 380px; max-width: 100%;
}
.foto-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: var(--glow-ouro), inset 0 0 60px rgba(74,0,0,0.3);
  aspect-ratio: 3/4;
}
.foto-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foto-placeholder {
  width: 100%; height: 100%; min-height: 480px;
  background: linear-gradient(160deg, #1E0000 0%, #0D0000 60%, #050000 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
}
.foto-placeholder i {
  font-size: 6rem;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}
.foto-placeholder span {
  font-family: var(--serif);
  font-size: 1rem; color: var(--texto-sub);
  letter-spacing: 0.12em;
}
.frame-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--dourado);
  border-style: solid;
  z-index: 2;
}
.frame-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.frame-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.frame-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.frame-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.foto-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--dourado-dk), var(--dourado));
  color: var(--preto);
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700; font-size: 0.78rem;
  line-height: 1.3;
  box-shadow: 0 8px 32px rgba(212,175,55,0.3);
  z-index: 3;
}
.foto-badge .num { font-size: 1.6rem; font-family: var(--serif); display: block; }

/* Floating ornament */
.hero-ornament {
  position: absolute;
  top: -40px; left: -40px;
  opacity: 0.04; font-size: 22rem;
  color: var(--dourado);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   SOBRE SECTION
   ============================================ */
#sobre {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(74,0,0,0.2) 0%, transparent 60%),
    var(--preto-soft);
}
.sobre-values { margin-top: 40px; display: grid; gap: 16px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--vinho-glass);
  border: 1px solid var(--borda);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}
.value-item:hover { border-color: var(--borda-hover); transform: translateX(6px); }
.value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--borda);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado); font-size: 1rem;
}
.value-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--texto); }
.value-item p { font-size: 0.85rem; color: var(--texto-sub); margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.stat-card {
  text-align: center; padding: 32px 20px;
  background: var(--vinho-glass);
  border: 1px solid var(--borda);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.stat-card:hover { border-color: var(--borda-hover); box-shadow: var(--glow-ouro); }
.stat-card .num {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 700;
  color: var(--dourado); display: block;
}
.stat-card .unit { color: var(--dourado-lt); }
.stat-card .label { font-size: 0.82rem; color: var(--texto-sub); margin-top: 6px; }

/* ============================================
   ÁREAS DE ATUAÇÃO
   ============================================ */
#areas { background: var(--preto); }
.area-card {
  background: rgba(74,0,0,0.06);
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.area-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-6px); box-shadow: var(--glow-ouro); }
.area-card:hover::before { opacity: 1; }

.area-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--dourado);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.area-card:hover .area-icon {
  background: rgba(212,175,55,0.15);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.area-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.area-card p { font-size: 0.85rem; color: var(--texto-sub); flex: 1; margin-bottom: 24px; }
.area-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--dourado); letter-spacing: 0.05em;
  transition: gap 0.3s;
}
.area-link:hover { gap: 14px; }
.area-link i { font-size: 0.7rem; transition: transform 0.3s; }
.area-card:hover .area-link i { transform: translateX(4px); }

/* ============================================
   COMO FUNCIONA — TIMELINE
   ============================================ */
#como-funciona {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74,0,0,0.25) 0%, transparent 50%),
    var(--preto-soft);
}
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 40px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--dourado), var(--dourado), transparent);
  opacity: 0.3;
}
.timeline-item {
  display: flex; gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-num {
  width: 80px; height: 80px; flex-shrink: 0;
  background: var(--vinho-glass);
  border: 1px solid var(--borda);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 700;
  color: var(--dourado);
  position: relative; z-index: 2;
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease);
}
.timeline-item:hover .timeline-num {
  border-color: var(--dourado);
  box-shadow: 0 0 30px rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.1);
}
.timeline-content { padding-top: 20px; }
.timeline-content h3 { margin-bottom: 10px; font-size: 1.15rem; }
.timeline-content p { color: var(--texto-sub); font-size: 0.9rem; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
#depoimentos { background: var(--preto); }
.depo-card {
  background: var(--vinho-glass);
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 36px 30px;
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
  position: relative;
}
.depo-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 5rem; line-height: 1;
  color: var(--dourado); opacity: 0.12;
}
.depo-card:hover { border-color: var(--borda-hover); box-shadow: var(--glow-ouro); }
.depo-stars { color: var(--dourado); font-size: 0.8rem; letter-spacing: 4px; margin-bottom: 16px; }
.depo-text { font-size: 0.92rem; color: var(--texto-sub); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 14px; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--borda);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--dourado);
  font-weight: 700; font-family: var(--serif);
}
.depo-author strong { font-size: 0.9rem; display: block; }
.depo-author span { font-size: 0.78rem; color: var(--texto-sub); }

/* ============================================
   BLOG
   ============================================ */
#blog { background: var(--preto-soft); }
.blog-card {
  background: rgba(74,0,0,0.06);
  border: 1px solid var(--borda);
  border-radius: 10px; overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--borda-hover); transform: translateY(-4px); box-shadow: var(--glow-ouro); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #1E0000, #0A0A0A);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--dourado);
  opacity: 0.5;
  position: relative; overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(8,8,8,0.8), transparent);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--dourado); margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.83rem; color: var(--texto-sub); flex: 1; margin-bottom: 20px; }
.blog-meta { font-size: 0.75rem; color: var(--texto-sub); }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--dourado);
  margin-top: 12px; transition: gap 0.3s;
}
.read-more:hover { gap: 10px; }

/* ============================================
   FAQ
   ============================================ */
#faq { background: var(--preto); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--borda);
  border-radius: 10px; margin-bottom: 12px;
  overflow: hidden; transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(212,175,55,0.3); }
.faq-item.open { border-color: rgba(212,175,55,0.4); box-shadow: var(--glow-ouro); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 28px; color: var(--texto);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left;
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--dourado-lt); }
.faq-item.open .faq-question { color: var(--dourado); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--borda); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--dourado);
  transition: all 0.3s var(--ease);
}
.faq-item.open .faq-icon { background: rgba(212,175,55,0.1); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.9rem; color: var(--texto-sub); line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */
#cta-final {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(74,0,0,0.8) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(30,0,0,0.6) 0%, transparent 50%),
    linear-gradient(135deg, #2D0000, #1E0000, #0D0000);
  text-align: center; padding: 120px 0;
}
.cta-ornament {
  font-size: 5rem; color: var(--dourado);
  opacity: 0.08; margin-bottom: 20px;
}
#cta-final h2 { margin-bottom: 20px; }
#cta-final p { color: var(--texto-sub); max-width: 480px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #040404;
  border-top: 1px solid rgba(212,175,55,0.08);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.footer-logo span { color: var(--dourado); }
.footer-desc { font-size: 0.85rem; color: var(--texto-sub); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--borda); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--texto-sub);
  transition: all 0.3s var(--ease);
}
.social-link:hover { border-color: var(--dourado); color: var(--dourado); background: rgba(212,175,55,0.06); }
.footer-col h4 {
  font-family: var(--serif); font-size: 0.95rem;
  color: var(--dourado); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--texto-sub);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--dourado); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem; color: var(--texto-sub); margin-bottom: 14px;
}
.footer-contact i { color: var(--dourado); margin-top: 2px; font-size: 0.85rem; flex-shrink: 0; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(212,175,55,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--texto-sub); }
.oab-badge {
  font-size: 0.78rem; color: var(--texto-sub);
  padding: 6px 14px;
  border: 1px solid var(--borda); border-radius: 4px;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
  animation: pulse-whatsapp 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.55); }
@keyframes pulse-whatsapp {
  0%,100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ============================================
   INNER PAGE — HERO VARIANTS
   ============================================ */
.page-hero {
  min-height: 52vh; display: flex; align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(74,0,0,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(74,0,0,0.3) 0%, transparent 45%),
    #080808;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '⚖';
  position: absolute;
  font-size: 20rem; opacity: 0.025;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  font-size: 0.78rem; color: var(--texto-sub); margin-bottom: 20px;
}
.breadcrumb a { color: var(--texto-sub); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--dourado); }
.breadcrumb i { font-size: 0.6rem; color: var(--borda); }
.page-hero .section-tag { justify-content: center; margin: 0 auto 16px; }

/* Inner content */
.service-content { max-width: 800px; }
.service-content h2 { margin: 48px 0 20px; }
.service-content p { color: var(--texto-sub); margin-bottom: 20px; }
.service-content ul { margin: 16px 0 20px 20px; display: grid; gap: 10px; }
.service-content ul li {
  font-size: 0.9rem; color: var(--texto-sub);
  padding-left: 20px; position: relative;
}
.service-content ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--dourado); font-weight: 700;
}
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 40px 0; }
.benefit-item {
  padding: 24px 20px;
  background: var(--vinho-glass);
  border: 1px solid var(--borda);
  border-radius: 10px; text-align: center;
  transition: all 0.3s var(--ease);
}
.benefit-item:hover { border-color: var(--borda-hover); transform: translateY(-3px); }
.benefit-item i { font-size: 1.6rem; color: var(--dourado); margin-bottom: 12px; display: block; }
.benefit-item h4 { font-size: 0.9rem; margin-bottom: 6px; }
.benefit-item p { font-size: 0.8rem; color: var(--texto-sub); margin: 0; }

/* CTA inline strip */
.cta-strip {
  background: rgba(74,0,0,0.2);
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 40px; text-align: center;
  margin: 60px 0;
}
.cta-strip h3 { margin-bottom: 10px; font-size: 1.4rem; }
.cta-strip p { color: var(--texto-sub); margin-bottom: 28px; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-article { max-width: 760px; margin: 0 auto; }
.blog-article h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 20px; }
.article-meta {
  display: flex; align-items: center; gap: 20px;
  font-size: 0.8rem; color: var(--texto-sub); margin-bottom: 40px;
  flex-wrap: wrap;
}
.article-meta i { color: var(--dourado); }
.article-content h2 { font-size: 1.5rem; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--borda); }
.article-content h3 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--dourado-lt); }
.article-content p { color: var(--texto-sub); margin-bottom: 20px; line-height: 1.85; }
.article-content ul, .article-content ol { margin: 20px 0 20px 24px; display: grid; gap: 10px; }
.article-content li { color: var(--texto-sub); font-size: 0.92rem; }
.article-callout {
  border-left: 3px solid var(--dourado);
  padding: 20px 24px;
  background: rgba(212,175,55,0.04);
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
  font-style: italic; color: var(--texto-sub);
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
/* .reveal só fica escondido quando JS está ativo */
.js-loaded .reveal { opacity: 0; transform: translateY(30px); }
.reveal.visible { opacity: 1 !important; transform: none !important; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeInUp 0.7s var(--ease-out) 0.1s both; }
.anim-2 { animation: fadeInUp 0.7s var(--ease-out) 0.2s both; }
.anim-3 { animation: fadeInUp 0.7s var(--ease-out) 0.35s both; }
.anim-4 { animation: fadeInUp 0.7s var(--ease-out) 0.5s both; }
.anim-5 { animation: fadeInUp 0.7s var(--ease-out) 0.65s both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — Tablet (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

  /* --- Navbar — fundo sempre visível no mobile ---
     ATENÇÃO: backdrop-filter removido propositalmente.
     backdrop-filter cria containing block para position:fixed,
     fazendo o overlay do menu clipar na altura do navbar. */
  .navbar {
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid var(--borda);
  }
  .nav-logo { height: 60px; }
  .nav-logo img { height: 172px; }
  .nav-inner { padding: 6px 0; }

  /* === MOBILE MENU OVERLAY === */
  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 0 32px;
    background: #080808;
    z-index: 1060;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }

  /* Links — menores, elegantes */
  .nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,234,214,0.7);
    padding: 18px 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    width: 100%;
    text-align: center;
  }
  .nav-links a:last-child { border-bottom: none; }

  /* Botão WhatsApp */
  .nav-btn {
    margin-top: 24px !important;
    background: linear-gradient(135deg, var(--dourado-dk), var(--dourado)) !important;
    color: #0D0D0D !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    border: none !important;
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    display: flex !important;
  }

  /* Hamburger / X: acima de tudo */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1200;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 5px;
    padding: 8px 10px;
  }

  /* --- Seções gerais --- */
  .section { padding: 60px 0; }
  h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* --- Hero premium --- */
  #hero.hero-premium { padding-top: 76px; padding-bottom: 50px; min-height: 0; }
  .hero-premium-inner {
    grid-template-columns: 1fr; gap: 36px;
    text-align: center;
  }
  /* Texto primeiro, foto abaixo no mobile */
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .hero-badge-v2 { margin: 0 auto 24px; }
  .hero-headline { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .hero-sub-v2 { margin: 0 auto 32px; max-width: 480px; }
  .hero-btns-v2 { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* Foto mobile — menor para não dominar a tela */
  .hero-photo-scene { width: 200px; margin: 0 auto; }
  .hero-photo-frame-v2 { width: 180px; }
  .photo-orbit-1 { width: 230px; height: 230px; }
  .photo-orbit-2 { width: 270px; height: 270px; }
  .photo-glow-halo { width: 210px; height: 260px; }
  .oab-seal-premium { right: -8px; bottom: -8px; padding: 10px 12px; min-width: 90px; }
  .oab-seal-premium .seal-title { font-size: 0.9rem; }
  .oab-seal-premium .seal-sub { font-size: 0.55rem; }

  /* Cards de áreas */
  .hero-areas-section { margin-top: 36px; padding-top: 28px; }
  .hero-areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-area-card { padding: 12px 10px; }
  .hero-area-card span { font-size: 0.72rem; }

  /* Layouts gerais */
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-card { padding: 20px 10px; }
  .stat-card .num { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* Blog section header empilha no mobile */
  .section-header.flex-between { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .section-header.flex-between .btn { align-self: flex-start; }

  /* Timeline */
  .timeline::before { left: 28px; }
  .timeline-num { width: 56px; height: 56px; font-size: 1.2rem; }
  .timeline-item { gap: 20px; }

  /* Depoimentos */
  .grid-3 { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-strip { padding: 28px 20px; }

  /* Página hero interna */
  .page-hero { padding: 110px 0 60px; min-height: 42vh; }
}

/* ============================================
   RESPONSIVE — Mobile pequeno (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 13px 22px; font-size: 0.85rem; }

  .nav-logo { height: 50px; }
  .nav-logo img { height: 146px; }

  #hero.hero-premium { padding-top: 68px; }
  .hero-headline { font-size: 1.75rem; line-height: 1.15; }
  .hero-photo-scene { width: 200px; }
  .hero-photo-frame-v2 { width: 190px; }
  .photo-orbit-1 { width: 230px; height: 230px; }
  .photo-orbit-2 { display: none; }
  .photo-glow-halo { width: 220px; height: 270px; }
  .oab-seal-premium { display: none; }

  .hero-areas-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .hero-area-card { padding: 10px 8px; gap: 7px; }
  .hero-area-icon { width: 26px; height: 26px; font-size: 0.8rem; }
  .hero-area-card span { font-size: 0.68rem; }

  .area-card { padding: 20px 16px; }
  .grid-auto { grid-template-columns: 1fr; }

  /* Stats grid mantém 3 colunas — só reduz padding e fonte */
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card { padding: 14px 6px; }
  .stat-card .num { font-size: 1.5rem; }
  .stat-card .label { font-size: 0.7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-btns-v2 .btn { width: 100%; justify-content: center; }

  /* FAQ menos padding em telas pequenas */
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-answer-inner { padding: 0 18px 16px; }

  /* WhatsApp float menor */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.3rem; bottom: 16px; right: 16px; }
}

/* ============================================================
   NAVBAR PREMIUM — Logo Centralizada + Fundo Escuro Fixo
   ============================================================ */
.navbar-premium {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
  background: #0D0908;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  box-shadow: 0 4px 60px rgba(0,0,0,0.6);
}
.navbar-premium.scrolled {
  background: #0A0706;
  border-bottom-color: rgba(212,175,55,0.18);
  box-shadow: 0 4px 50px rgba(0,0,0,0.7);
}

/* Logo bar */
.nav-logo-bar {
  display: flex; align-items: center; justify-content: center;
  height: 200px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: height 0.4s var(--ease);
}
.navbar-premium.scrolled .nav-logo-bar { height: 65px; }

.nav-logo-link { display: flex; align-items: center; justify-content: center; }

.nav-logo-img-premium {
  width: min(600px, 96vw);
  height: auto;
  flex-shrink: 0;
  display: block;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 16px rgba(212,175,55,0.45));
  transition: width 0.4s var(--ease), filter 0.4s var(--ease);
}
.navbar-premium.scrolled .nav-logo-img-premium {
  width: min(180px, 60vw);
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}

.nav-gold-separator {
  width: 260px; height: 1px; margin-top: 12px; position: relative; z-index: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.5) 25%, var(--dourado) 50%, rgba(212,175,55,0.5) 75%, transparent 100%);
  transition: all 0.4s var(--ease);
}
.navbar-premium.scrolled .nav-gold-separator { opacity: 0; height: 0; margin: 0; }

/* Menu bar */
.nav-menu-premium {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 24px 14px;
  flex-wrap: wrap;
  transition: all 0.4s var(--ease);
}
.navbar-premium.scrolled .nav-menu-premium { padding: 6px 24px 8px; }

.nav-menu-premium a {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; color: rgba(240,234,214,0.75);
  padding: 6px 14px; border-radius: 4px;
  transition: all 0.3s var(--ease);
  position: relative; text-decoration: none;
}
.nav-menu-premium a::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1px; background: var(--dourado);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-menu-premium a:hover { color: var(--texto); }
.nav-menu-premium a:hover::after { transform: scaleX(1); }

.nav-wp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--dourado-dk), var(--dourado), var(--dourado-lt));
  color: var(--preto) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important; border-radius: 6px;
  font-size: 0.78rem !important; letter-spacing: 0.03em;
  box-shadow: 0 4px 18px rgba(212,175,55,0.3);
  transition: all 0.3s var(--ease) !important;
  margin-left: 8px;
}
.nav-wp-btn::after { display: none !important; }
.nav-wp-btn:hover { transform: translateY(-1px) !important; box-shadow: 0 6px 28px rgba(212,175,55,0.45) !important; }

/* Mobile hamburger premium */
.nav-premium-mobile { display: none; align-items: center; justify-content: space-between; padding: 14px 24px; }
.hamburger-premium {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; z-index: 1001;
}
.hamburger-premium span { display: block; width: 26px; height: 2px; background: var(--texto); transition: all 0.3s; }
.hamburger-premium.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger-premium.active span:nth-child(2) { opacity: 0; }
.hamburger-premium.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO PREMIUM — Cinematic Premium Layout
   ============================================================ */
#hero.hero-premium {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 75%, rgba(80,0,0,0.7) 0%, transparent 48%),
    radial-gradient(ellipse at 92% 15%, rgba(65,0,0,0.45) 0%, transparent 42%),
    radial-gradient(ellipse at 45% 55%, rgba(212,175,55,0.03) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(40,0,0,0.35) 0%, transparent 35%),
    #06060A;
  display: block;
}

/* Canvas */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Background decorative layers */
.hero-bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }

.hero-scales-decor {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 520px; line-height: 1;
  color: rgba(212,175,55,0.022);
  user-select: none;
  animation: float 14s ease-in-out infinite;
}

.hero-beam {
  position: absolute;
  width: 1px; height: 70%;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.07), transparent);
  transform-origin: top center;
}
.hero-beam-1 { left: 22%; top: 0; transform: rotate(-12deg); }
.hero-beam-2 { right: 28%; top: 5%; transform: rotate(8deg); opacity: 0.5; }
.hero-beam-3 { left: 50%; top: 0; transform: rotate(2deg); opacity: 0.3; }

.hero-geo-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
}

/* Hero inner grid */
.hero-premium-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
  padding: 20px 0 0;
}

/* LEFT SIDE */
.hero-left {}

.hero-badge-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.22);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dourado); margin-bottom: 32px;
  animation: fadeInUp 0.7s var(--ease-out) 0.1s both;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 26px;
  animation: fadeInUp 0.7s var(--ease-out) 0.2s both;
}

.hero-gold-word {
  font-style: italic; display: inline-block;
  font-size: 1.12em;
  background: linear-gradient(135deg, var(--dourado-dk) 0%, var(--dourado) 35%, var(--dourado-lt) 60%, var(--dourado) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.35));
  animation: gold-shimmer 4s ease-in-out infinite;
}
@keyframes gold-shimmer {
  0%,100% { filter: drop-shadow(0 0 14px rgba(212,175,55,0.3)); }
  50% { filter: drop-shadow(0 0 28px rgba(212,175,55,0.6)); }
}

.hero-sub-v2 {
  font-size: 1rem; color: var(--texto-sub);
  max-width: 480px; line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s var(--ease-out) 0.35s both;
}

.hero-btns-v2 {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.7s var(--ease-out) 0.5s both;
}

/* RIGHT SIDE — Photo Scene */
.hero-right { display: flex; justify-content: center; align-items: center; }

.hero-photo-scene {
  position: relative;
  width: 380px;
  display: flex; justify-content: center; align-items: center;
  animation: fadeInUp 0.9s var(--ease-out) 0.3s both;
}

/* Glowing circle behind photo */
.photo-glow-halo {
  position: absolute;
  width: 420px; height: 520px;
  border-radius: 50% 50% 50% 50% / 42% 42% 58% 58%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.1) 0%, rgba(74,0,0,0.2) 40%, transparent 70%);
  z-index: 0;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Orbit rings */
.photo-orbit {
  position: absolute;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 50%;
  z-index: 1;
}
.photo-orbit-1 { width: 460px; height: 460px; animation: orbit-spin 30s linear infinite; }
.photo-orbit-2 { width: 520px; height: 520px; border-color: rgba(212,175,55,0.05); animation: orbit-spin 50s linear infinite reverse; }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Orbit dots */
.photo-orbit::before {
  content: ''; position: absolute;
  top: -3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dourado); opacity: 0.4;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

/* The photo frame */
.hero-photo-frame-v2 {
  position: relative; z-index: 3;
  width: 340px;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.28);
  box-shadow:
    0 0 40px rgba(212,175,55,0.15),
    0 0 80px rgba(74,0,0,0.4),
    inset 0 0 30px rgba(74,0,0,0.2);
  aspect-ratio: 3/4;
}
.hero-photo-frame-v2 img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}

/* Corner ornaments */
.photo-corner { position: absolute; width: 32px; height: 32px; border-color: var(--dourado); border-style: solid; z-index: 4; }
.photo-corner.c-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.photo-corner.c-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.photo-corner.c-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.photo-corner.c-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* OAB Seal */
.oab-seal-premium {
  position: absolute; bottom: -20px; right: -20px; z-index: 5;
  background: linear-gradient(135deg, var(--dourado-dk), var(--dourado));
  border-radius: 10px; padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(212,175,55,0.35);
  text-align: center; min-width: 110px;
  border: 1px solid rgba(255,255,255,0.1);
}
.oab-seal-premium .seal-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--preto); display: block; line-height: 1;
}
.oab-seal-premium .seal-sub {
  font-size: 0.62rem; font-weight: 700;
  color: rgba(0,0,0,0.65); display: block;
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}

/* ============================================================
   HERO AREAS GRID — Inside Hero Section
   ============================================================ */
.hero-areas-section {
  position: relative; z-index: 2;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.1);
  animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.hero-areas-label {
  text-align: center;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(212,175,55,0.5); margin-bottom: 20px;
}

.hero-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-area-card {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 10px; padding: 14px 12px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--texto);
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.hero-area-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.hero-area-card:hover {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.1), 0 0 0 1px rgba(212,175,55,0.15);
}
.hero-area-card:hover::before { opacity: 1; }

.hero-area-icon {
  color: var(--dourado); font-size: 1rem; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 7px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.hero-area-card:hover .hero-area-icon {
  background: rgba(212,175,55,0.15);
  box-shadow: 0 0 12px rgba(212,175,55,0.25);
}
.hero-area-card span { font-size: 0.75rem; font-weight: 500; line-height: 1.3; }

/* ============================================================
   NAVBAR PREMIUM — Mobile
   ============================================================ */
@media (max-width: 900px) {
  .nav-logo-bar { height: 110px; }
  .nav-logo-img-premium { width: min(240px, 80vw); }
  .nav-gold-separator { display: none; }
  .nav-menu-premium {
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,6,10,0.97); backdrop-filter: blur(20px);
    justify-content: center; align-items: center; z-index: 999;
    gap: 20px; padding: 40px;
  }
  .nav-menu-premium.open { display: flex; }
  .nav-menu-premium a { font-size: 1.2rem; padding: 10px 20px; border-bottom: 1px solid var(--borda); width: 100%; text-align: center; }
  .nav-wp-btn { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }
  .nav-premium-mobile { display: flex; }
  .hamburger-premium { position: relative; z-index: 1001; }
}

/* ============================================================
   MOBILE OVERRIDES — Elementos Premium
   DEVE ficar no final do arquivo — estilos base do hero
   são declarados depois da media query original e a sobrescrevem.
   ============================================================ */
@media (max-width: 768px) {

  /* Hero — remove altura mínima forçada */
  #hero.hero-premium {
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 48px;
  }

  /* Grid do hero: coluna única, texto acima, foto abaixo */
  .hero-premium-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding-top: 0;
  }
  .hero-left  { order: 1; }
  .hero-right { order: 2; }

  /* Centraliza elementos do hero-left */
  .hero-badge-v2 { margin: 0 auto 20px; }
  .hero-headline { font-size: clamp(1.9rem, 6.5vw, 2.6rem); line-height: 1.15; }
  .hero-sub-v2   { margin: 0 auto 28px; max-width: 460px; font-size: 0.95rem; }
  .hero-btns-v2  { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* Foto — tamanho contido */
  .hero-photo-scene    { width: 220px; margin: 0 auto; }
  .hero-photo-frame-v2 { width: 200px; }
  .photo-orbit-1       { width: 250px; height: 250px; }
  .photo-orbit-2       { width: 290px; height: 290px; }
  .photo-glow-halo     { width: 230px; height: 280px; }
  .oab-seal-premium    {
    right: -8px; bottom: -8px;
    padding: 10px 12px; min-width: 90px;
  }
  .oab-seal-premium .seal-title { font-size: 0.9rem; }
  .oab-seal-premium .seal-sub   { font-size: 0.55rem; }

  /* Áreas de atuação — 2 colunas no mobile */
  .hero-areas-section { margin-top: 32px; padding-top: 24px; }
  .hero-areas-grid    { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-area-card     { padding: 12px 10px; }
  .hero-area-card span { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  #hero.hero-premium { padding-top: 68px; padding-bottom: 36px; }

  .hero-headline { font-size: 1.8rem; }

  /* Foto ainda menor em telas pequenas */
  .hero-photo-scene    { width: 180px; }
  .hero-photo-frame-v2 { width: 165px; }
  .photo-orbit-1       { width: 210px; height: 210px; }
  .photo-orbit-2       { display: none; }
  .photo-glow-halo     { width: 195px; height: 240px; }
  .oab-seal-premium    { display: none; }

  /* Áreas — mantém 2 colunas */
  .hero-areas-grid  { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .hero-area-card   { padding: 10px 8px; gap: 7px; }
  .hero-area-icon   { width: 26px; height: 26px; font-size: 0.8rem; }
  .hero-area-card span { font-size: 0.68rem; }
}

