:root {
  --dark: #1c1c1c;
  --dark-soft: #2a2a2a;
  --dark-line: #3a3a3a;
  --ink: #2c2c2c;
  --body: #4a4a4a;
  --muted: #8a8a8a;
  --line: #e7e1d4;
  --bg: #ffffff;
  --bg-soft: #f5f1e8;
  --bg-cream: #faf6ec;
  --gold: #c9a050;
  --gold-soft: #d9b56b;
  --gold-dark: #a68333;
  --wa: #25d366;
  --wa-dark: #1da855;
  --maxw: 1180px;
  --maxw-narrow: 960px;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--bg);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s var(--easing); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 500; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.005em; color: var(--dark); }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--maxw-narrow);
}

.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 18px;
}
.kicker-light { color: var(--gold-soft); }

.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--dark); color: rgba(255,255,255,.86); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.78); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(28,28,28,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,160,80,.18);
  transition: padding .35s var(--easing), background .35s var(--easing);
  padding: 10px 0;
}
.site-header.is-scrolled { padding: 6px 0; background: rgba(28,28,28,.98); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-mark img {
  display: block;
  width: auto;
  height: 110px;
  transition: height .35s var(--easing);
}
.site-header.is-scrolled .brand-mark img { height: 80px; }
.primary-nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
}
.primary-nav a {
  color: rgba(255,255,255,.84);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 2px;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s var(--easing), left .25s var(--easing);
}
.primary-nav a:hover { color: var(--gold-soft); }
.primary-nav a:hover::after { width: 100%; left: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 999px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-size: 0.74rem !important;
  transition: background .2s var(--easing), transform .2s var(--easing);
}
.nav-cta:hover { background: var(--gold-soft); color: var(--dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { display: block; width: 26px; height: 26px; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: clamp(90px, 12vw, 160px) 0 clamp(80px, 10vw, 140px);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.4) brightness(.55) contrast(1.08);
  opacity: 0.5;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 30% 50%, rgba(28,28,28,.25) 0%, rgba(28,28,28,.85) 80%),
    linear-gradient(to bottom, rgba(28,28,28,.10) 0%, rgba(28,28,28,.65) 100%);
}
.hero > .container.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  padding-left: clamp(24px, 6vw, 110px);
  padding-right: 24px;
}
.hero-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 26px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  color: #fff;
  margin: 0 0 26px;
  letter-spacing: -0.008em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.hero-lead {
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s var(--easing), background .2s var(--easing), box-shadow .2s var(--easing), color .2s var(--easing);
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37,211,102,.32);
}
.btn-wa:hover { background: var(--wa-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,.4); }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-soft); color: var(--dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
}
.btn-ghost:hover { background: rgba(255,255,255,.06); color: var(--gold-soft); border-color: var(--gold-soft); }
.btn .wa-icon { width: 20px; height: 20px; fill: currentColor; }

/* Section header */
.section-header { text-align: center; margin: 0 auto clamp(40px, 5vw, 64px); max-width: 720px; }
.section-header .kicker { display: inline-block; }
.section-header h2 { margin: 0 0 14px; }
.section-header p { color: var(--body); font-size: 1.02rem; margin: 0; }

/* Áreas grid (home) */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px 32px;
  transition: transform .25s var(--easing), border-color .25s var(--easing), box-shadow .25s var(--easing);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height .35s var(--easing);
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(28,28,28,.10);
}
.area-card:hover::before { height: 100%; }
.area-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 16px;
  display: block;
}
.area-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.area-card p {
  font-size: 0.96rem;
  color: var(--body);
  margin: 0 0 18px;
}
.area-card .area-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.area-card .area-link::after {
  content: '→';
  transition: transform .2s var(--easing);
}
.area-card:hover .area-link::after { transform: translateX(4px); }

/* Sobre (home) */
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.sobre-aside h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}
.sobre-aside .gold-rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 0;
}
.sobre-body p { font-size: 1.02rem; color: var(--ink); }
.sobre-body .lead-paragraph {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1.2em;
}

/* Pilares (home — missão / visão / valores) — limpos, sem degradê metálico */
.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pilar-card {
  background: #fff;
  border-top: 3px solid var(--gold);
  padding: 36px 30px;
  position: relative;
}
.pilar-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  display: block;
}
.pilar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 14px;
}
.pilar-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
}

/* Profissional */
.profissional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 60px);
  align-items: start;
}
.profissional-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 60px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.profissional-card::before, .profissional-card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.profissional-card::before { top: 24px; left: 50%; transform: translateX(-50%); }
.profissional-card::after { bottom: 24px; left: 50%; transform: translateX(-50%); }
.profissional-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 6px;
}
.profissional-card .oab {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 24px;
  font-weight: 600;
}
.profissional-card p {
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Band */
.cta-band {
  background: var(--dark);
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(201,160,80,.18) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 16px; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0 0 32px; font-size: 1.02rem; }

/* Pilares pequenos / diferenciais (home — Serviços / Foco / Soluções) */
.diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.diferencial-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 26px;
  text-align: left;
}
.diferencial-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 0 18px;
}
.diferencial-icon svg { width: 100%; height: 100%; }
.diferencial-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 10px;
}
.diferencial-card p {
  font-size: 0.96rem;
  color: var(--body);
  margin: 0;
}

/* Contato */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 64px);
  align-items: start;
}
.contato-text h2 { margin: 0 0 14px; }
.contato-text p { color: var(--ink); margin: 0 0 18px; }
.contato-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.contato-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: start;
}
.contato-list li:last-child { border-bottom: 0; }
.contato-list strong {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
}
.contato-list span,
.contato-list a { color: var(--ink); font-size: 0.98rem; }

.contato-card {
  background: var(--bg-cream);
  border-left: 3px solid var(--gold);
  padding: clamp(28px, 4vw, 40px);
}
.contato-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--dark);
}
.contato-card p { font-size: 0.98rem; margin: 0 0 16px; color: var(--ink); }
.contato-card .btn { margin-top: 12px; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.66);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
  margin-bottom: 36px;
}
.footer-brand img {
  display: block;
  width: auto;
  height: 80px;
  opacity: 0.95;
  margin: 0 0 18px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,.72);
}
.footer-col a {
  color: rgba(255,255,255,.72);
  display: inline-block;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: var(--gold-soft); }

/* WhatsApp floating */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  background: var(--wa);
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(37,211,102,.40), 0 2px 6px rgba(0,0,0,.12);
  transition: background .2s var(--easing), transform .2s var(--easing);
}
.wa-float:hover { background: var(--wa-dark); color: #fff; transform: translateY(-3px); }
.wa-float .wa-icon { width: 22px; height: 22px; fill: currentColor; }

/* Reveal animations */
[data-anim] { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--easing), transform .9s var(--easing); }
[data-anim].is-in { opacity: 1; transform: none; }

/* ============ LP-specific (extends shared) ============ */
.lp-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-area {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s var(--easing), border-color .25s var(--easing), box-shadow .25s var(--easing);
  position: relative;
}
.lp-area:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(28,28,28,.08);
}
.lp-area-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  color: var(--gold);
  align-items: center;
  justify-content: center;
}
.lp-area-icon svg { width: 100%; height: 100%; }
.lp-area h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.005em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .pilares { grid-template-columns: 1fr; gap: 18px; }
  .sobre-grid { grid-template-columns: 1fr; }
  .diferenciais { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-areas { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(28,28,28,.98);
    padding: 18px 24px 24px;
    border-top: 1px solid rgba(201,160,80,.2);
    gap: 4px;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 0; font-size: 0.9rem; }
  .nav-cta { margin-top: 12px; }
  .nav-toggle { display: inline-flex; }
  .site-header { position: relative; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .areas-grid { grid-template-columns: 1fr; }
  .lp-areas { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-mark img { height: 72px; }
  .site-header.is-scrolled .brand-mark img { height: 60px; }
  .contato-list li { grid-template-columns: 1fr; gap: 4px; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; }
}
