/* ════════════════════════════════════════
   VARIÁVEIS E RESET
════════════════════════════════════════ */
:root {
  --navy:       #1e2a38;
  --navy-deep:  #141d28;
  --navy-mid:   #203a43;
  --gold:       #c5a880;
  --gold-light: #dfc9a3;
  --gold-dark:  #a8895f;
  --white:      #ffffff;
  --text-muted: rgba(255,255,255,0.62);
  --whatsapp:   #25d366;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--navy); }

/* ════════════════════════════════════════
   UTILITÁRIOS
════════════════════════════════════════ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 820px;  margin: 0 auto; padding: 0 40px; }

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 32px;
}
.gold-line.center { margin: 18px auto 32px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(20,29,40,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197,168,128,0.15);
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

.header-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.header-logo  { height:75px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .mac {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
}
.brand-text .sub {
  font-size: 10px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 4px;
  transition: color var(--transition);
}
nav a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px; cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--gold); display: block; transition: var(--transition); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(32,58,67,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(197,168,128,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #141d28 0%, #1e2a38 40%, #203a43 70%, #1e2a38 100%);
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(197,168,128,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,168,128,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px; align-items: center;
}

.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.12;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-lead {
  font-size: 16px; font-weight: 300;
  color: var(--text-muted);
  max-width: 540px; margin-bottom: 44px; line-height: 1.8;
}

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--whatsapp); color: white;
  text-decoration: none; font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; padding: 16px 32px; border-radius: 6px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 8px 32px rgba(37,211,102,0.28);
}
.btn-wa:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.38); }
.btn-wa svg   { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid rgba(197,168,128,0.4); padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,168,128,0.18);
  border-radius: 16px; padding: 40px 36px;
  backdrop-filter: blur(8px);
}

.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--gold);
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(197,168,128,0.15);
}

.trust-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.trust-item:last-child { margin-bottom: 0; }

.trust-icon {
  width: 36px; height: 36px;
  background: rgba(197,168,128,0.1);
  border: 1px solid rgba(197,168,128,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 16px;
}

.trust-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.trust-text span   { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.hero-location {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(197,168,128,0.15);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
}
.hero-location svg { width: 14px; height: 14px; fill: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.5;
}
.scroll-hint span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(197,168,128,0.1);
  border-bottom: 1px solid rgba(197,168,128,0.1);
  padding: 40px;
}
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }

.stat-item { text-align: center; padding: 0 30px; border-right: 1px solid rgba(197,168,128,0.1); }
.stat-item:last-child { border-right: none; }

.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label  { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }

/* ════════════════════════════════════════
   SOBRE
════════════════════════════════════════ */
#sobre { padding: 120px 40px; position: relative; }
#sobre::before {
  content: '"';
  position: absolute; top: 60px; right: 6%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 340px; color: rgba(197,168,128,0.04);
  line-height: 1; pointer-events: none; user-select: none;
}

.sobre-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.sobre-left .section-label { display: block; }
.sobre-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 3rem); font-weight: 700; line-height: 1.15; }
.sobre-right p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.78); margin-bottom: 22px; line-height: 1.85; }

.diferenciais { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dif-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.75); }
.dif-item::before { content: '✦'; color: var(--gold); font-size: 10px; margin-top: 3px; flex-shrink: 0; }

/* ════════════════════════════════════════
   ÁREAS DE ATUAÇÃO
════════════════════════════════════════ */
#areas { padding: 120px 40px; background: var(--navy-deep); position: relative; overflow: hidden; }
#areas::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  border: 1px solid rgba(197,168,128,0.06); border-radius: 50%; pointer-events: none;
}

.areas-header { text-align: center; margin-bottom: 72px; }
.areas-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; }
.areas-header p  { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.areas-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }

.area-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,168,128,0.1);
  padding: 52px 48px; position: relative; overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none; color: var(--white); display: block;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease;
}
.area-card:hover               { background: rgba(197,168,128,0.05); border-color: rgba(197,168,128,0.25); }
.area-card:hover::before       { height: 100%; }

.area-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700;
  color: rgba(197,168,128,0.08); line-height: 1; margin-bottom: 20px;
  transition: color var(--transition);
}
.area-card:hover .area-number  { color: rgba(197,168,128,0.15); }

.area-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.area-card > p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }

.area-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.area-list li { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.area-list li::before { content: '→'; color: var(--gold); font-size: 11px; }

.area-cta {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.area-card:hover .area-cta     { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════ */
#depoimentos { padding: 120px 40px; }
.dep-header { text-align: center; margin-bottom: 64px; }
.dep-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 3rem); font-weight: 700; }

.dep-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.dep-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,168,128,0.12);
  border-radius: 12px; padding: 36px 32px; position: relative;
}

.dep-quote { font-family: 'Cormorant Garamond', serif; font-size: 52px; color: var(--gold); line-height: 0.8; margin-bottom: 16px; opacity: 0.5; }
.dep-text  { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 28px; font-style: italic; }

.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700;
  color: var(--gold-light); flex-shrink: 0;
}
.dep-name  { font-size: 13px; font-weight: 600; color: var(--white); }
.dep-area  { font-size: 11px; color: var(--gold); margin-top: 2px; }
.dep-stars { position: absolute; top: 32px; right: 32px; color: var(--gold); font-size: 12px; letter-spacing: 2px; }

/* ════════════════════════════════════════
   CONTATO
════════════════════════════════════════ */
#contato { padding: 120px 40px; background: var(--navy-deep); position: relative; overflow: hidden; }
#contato::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border: 1px solid rgba(197,168,128,0.06); border-radius: 50%; pointer-events: none;
}

.contato-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }

.contato-left .section-label { display: block; }
.contato-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.contato-left p  { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }

.contato-data { display: flex; flex-direction: column; gap: 20px; }
.contato-item { display: flex; align-items: center; gap: 14px; }

.contato-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(197,168,128,0.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px; flex-shrink: 0;
}
.contato-item-text  { font-size: 14px; color: rgba(255,255,255,0.8); }
.contato-item-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 2px; }

.contato-right { background: rgba(255,255,255,0.03); border: 1px solid rgba(197,168,128,0.14); border-radius: 16px; padding: 48px 40px; text-align: center; }
.contato-right h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.contato-right p  { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.btn-wa-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; background: var(--whatsapp); color: white;
  text-decoration: none; font-weight: 700; font-size: 15px;
  padding: 18px 32px; border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 8px 32px rgba(37,211,102,0.25); margin-bottom: 16px;
}
.btn-wa-lg:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,0.35); }
.btn-wa-lg svg   { width: 22px; height: 22px; fill: white; }

.contato-note { font-size: 11px; color: var(--text-muted); }

.atendimento-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 11px; color: var(--text-muted); }
.atendimento-badge::before { content: ''; width: 8px; height: 8px; background: var(--whatsapp); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* ════════════════════════════════════════
   SEO LOCAL
════════════════════════════════════════ */
.seo-local { padding: 48px 40px; background: var(--navy-deep); border-top: 1px solid rgba(197,168,128,0.08); }
.seo-local p { max-width: 1200px; margin: 0 auto; font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.8; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: #0d1520; padding: 40px; border-top: 1px solid rgba(197,168,128,0.1); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand  { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--gold); font-weight: 600; }
.footer-legal  { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.8; }
.footer-oab    { font-size: 11px; color: rgba(255,255,255,0.3); text-align: right; }

/* ════════════════════════════════════════
   WHATSAPP FLUTUANTE
════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45); text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-float svg   { width: 28px; height: 28px; fill: white; }

.wa-float-pulse {
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: var(--whatsapp);
  animation: waPulse 2.5s ease infinite; z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ════════════════════════════════════════
   RESPONSIVIDADE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner              { grid-template-columns: 1fr; gap: 60px; }
  .hero-card               { max-width: 480px; }
  .sobre-grid              { grid-template-columns: 1fr; gap: 50px; }
  .stats-inner             { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)  { border-right: none; }
  .stat-item:nth-child(3)  { border-top: 1px solid rgba(197,168,128,0.1); }
  .stat-item:nth-child(4)  { border-top: 1px solid rgba(197,168,128,0.1); border-right: none; }
  .dep-grid                { grid-template-columns: 1fr 1fr; }
  .contato-inner           { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  header          { padding: 0 24px; }
  .hamburger      { display: flex; }
  nav {
    display: none; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(20,29,40,0.98);
    padding: 20px; border-top: 1px solid rgba(197,168,128,0.1);
  }
  nav.open        { display: flex; }
  nav a           { padding: 12px 16px; margin: 0; }
  .hero           { padding: 100px 24px 80px; }
  .hero-inner     { gap: 40px; }
  .hero h1        { font-size: 2.2rem; }
  #sobre,
  #areas,
  #depoimentos,
  #contato        { padding: 80px 24px; }
  .sobre-grid,
  .areas-grid     { grid-template-columns: 1fr; }
  .dep-grid       { grid-template-columns: 1fr; }
  .diferenciais   { grid-template-columns: 1fr; }
  .area-card      { padding: 36px 28px; }
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { flex-direction: column; text-align: center; }
  .footer-oab     { text-align: center; }
  .container,
  .container-sm   { padding: 0 24px; }
}
