/* =========================================================
   ALAÍDE DE PAULA ADVOCACIA — Landing Premium
   Paleta extraída da logo
   ========================================================= */

:root {
  /* Cores */
  --gold-900: #6E5520;
  --gold-700: #8E6F2E;
  --gold-600: #A88542;
  --gold-500: #B8954A;
  --gold-400: #C9A55D;
  --gold-300: #D9BF87;
  --gold-100: #EFE3C6;
  --gold-50:  #F8F1E0;

  --cream:    #FAF6EE;
  --cream-2:  #F3ECDC;
  --ink-900:  #1B1610;
  --ink-700:  #322A1E;
  --ink-500:  #5C5142;
  --ink-300:  #998C76;
  --line:     rgba(168, 133, 66, 0.18);
  --line-2:   rgba(27, 22, 16, 0.08);
  --white:    #FFFFFF;

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaços / curvas */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(27, 22, 16, 0.04);
  --shadow:    0 18px 48px -20px rgba(110, 85, 32, 0.22);
  --shadow-lg: 0 30px 80px -30px rgba(110, 85, 32, 0.32);

  --container: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }

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

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
}
em { font-style: italic; color: var(--gold-600); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 500;
  margin-bottom: 18px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--gold-500);
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 11px 20px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(168, 133, 66, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(168, 133, 66, 0.75);
}
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ---------- TOPBAR (credenciais) ---------- */
.topbar {
  background: var(--ink-900);
  color: var(--gold-300);
  padding: 11px 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 101;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-sep { color: rgba(217, 191, 135, 0.4); }

/* ---------- HEADER ---------- */
.site-header {
  position: absolute;
  inset: 38px 0 auto 0; /* abaixo da topbar */
  z-index: 100;
  padding: 12px 0;
  background: transparent;
  transition: all .4s var(--ease);
}
.site-header.is-overlay .site-nav a,
.site-header.is-overlay .nav-toggle span {
  color: var(--white);
  background: var(--white);
}
.site-header.is-overlay .site-nav a { background: transparent; }
.site-header.is-overlay .site-nav a::after { background: var(--gold-300); }
.site-header.is-overlay .site-nav a:hover { color: var(--gold-300); }

.site-header.scrolled {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled.is-overlay .site-nav a { color: var(--ink-700); }
.site-header.scrolled.is-overlay .site-nav a:hover { color: var(--gold-700); }
.site-header.scrolled.is-overlay .nav-toggle span { background: var(--ink-900); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav { margin-right: auto; margin-left: 16px; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark { width: 112px; height: 112px; object-fit: contain; transition: all .3s var(--ease); }
.site-header.is-overlay .brand-mark { width: 52px; height: 52px; opacity: 0.85; }
.site-header.scrolled .brand-mark { width: 64px; height: 64px; opacity: 1; }
.brand-text { display: none; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ink-900);
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 4px;
}
.site-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold-500);
  transition: right .3s var(--ease);
}
.site-nav a:hover { color: var(--gold-700); }
.site-nav a:hover::after { right: 0; }
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink-900);
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO FULL-BLEED ---------- */
.hero-fullbleed {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink-900);
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  display: block;
  transform: scale(1.08);
  transform-origin: right center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* Gradiente vertical: leve no topo (mostra logo da parede), forte no rodapé (texto) */
    linear-gradient(180deg, rgba(20, 17, 10, 0.35) 0%, rgba(20, 17, 10, 0.15) 10%, transparent 28%, transparent 55%, rgba(20, 17, 10, 0.55) 88%, rgba(20, 17, 10, 0.75) 100%),
    /* Gradiente horizontal: escuro à esquerda para legibilidade */
    linear-gradient(90deg, rgba(20, 17, 10, 0.85) 0%, rgba(20, 17, 10, 0.65) 32%, rgba(20, 17, 10, 0.25) 58%, transparent 85%);
}
.hero-fullbleed .container.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding-top: 110px;
  padding-bottom: 50px;
  min-height: 100vh;
  width: 100%;
}

.hero-text {
  max-width: 560px;
  color: var(--white);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.hero-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--gold-300);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.hero-kicker::before {
  content: '';
  width: 44px; height: 1px;
  background: var(--gold-300);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 880px;
  margin-top: 24px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--white);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero-stats span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .25s;
}
.scroll-cue:hover { color: var(--gold-300); }
.scroll-cue svg { animation: scroll-bounce 2.2s ease-in-out infinite; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ---------- TRUST ---------- */
.trust {
  background: var(--ink-900);
  color: var(--cream);
  padding: 32px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-item span {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.trust-item strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
}
.trust-divider {
  width: 1px; height: 36px;
  background: rgba(217, 191, 135, 0.3);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-header .eyebrow { padding-left: 0; }
.section-header .eyebrow::before { display: none; }
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-500);
  margin: 0;
}

/* ---------- ENTENDA SEUS DIREITOS ---------- */
.entenda {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.entenda::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid var(--gold-300);
  opacity: 0.4;
  pointer-events: none;
}
.entenda::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid var(--gold-300);
  opacity: 0.3;
  pointer-events: none;
}
.entenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.entenda-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  transition: all .35s var(--ease);
}
.entenda-block:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.entenda-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--gold-700);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-400);
  margin-bottom: 24px;
  font-weight: 500;
}
.entenda-block h3 {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.entenda-block p {
  font-size: 15.5px;
  color: var(--ink-500);
  line-height: 1.75;
  margin: 0 0 14px;
}
.entenda-block p:last-child { margin-bottom: 0; }
.entenda-block strong {
  color: var(--ink-900);
  font-weight: 600;
}
.entenda-quote {
  max-width: 760px;
  margin: 72px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 32px;
}
.entenda-quote p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink-900);
  font-style: italic;
  margin: 0 0 20px;
  font-weight: 400;
}
.entenda-quote footer {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 500;
}

/* ---------- ÁREAS ---------- */
.areas { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--cream) 100%);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}
.area-card > * { position: relative; z-index: 1; }
.area-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow);
}
.area-card:hover::before { opacity: 1; }
.area-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-50);
  display: grid;
  place-items: center;
  color: var(--gold-700);
  margin-bottom: 22px;
  transition: background .35s, transform .35s;
}
.area-card:hover .area-icon {
  background: var(--gold-100);
  transform: scale(1.05);
}
.area-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.area-card p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* ---------- SOBRE ---------- */
.sobre { background: var(--cream); }
.sobre-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
}
.portrait {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-lg);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  background: linear-gradient(135deg, var(--cream-2), var(--gold-50));
}
.portrait-placeholder svg { width: 80px; height: 80px; opacity: 0.5; }
.portrait-placeholder span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.portrait-bg {
  position: absolute;
  inset: -24px -24px auto auto;
  width: 70%; height: 80%;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.sobre-content .section-title { margin-bottom: 28px; }
.sobre-content p {
  font-size: 16px;
  color: var(--ink-500);
  margin: 0 0 18px;
}
.credentials {
  margin: 36px 0 40px;
  display: grid;
  gap: 14px;
}
.credentials li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-700);
}
.credentials svg {
  width: 18px; height: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
}

/* ---------- PROCESSO ---------- */
.processo {
  background: var(--white);
  position: relative;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  opacity: 0.7;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink-900);
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--gold-600);
  font-weight: 300;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold-700); }
.faq-body {
  padding: 0 28px 24px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.7;
}
.faq-body p { margin: 0; }

/* ---------- CONTATO ---------- */
.contato { background: var(--white); }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contato-content .section-title { margin-bottom: 24px; }
.contato-lead {
  font-size: 17px;
  color: var(--ink-500);
  margin: 0 0 40px;
}
.contato-info {
  display: grid;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.contato-info li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contato-info svg {
  width: 22px; height: 22px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.contato-info span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-300);
  display: block;
  margin-bottom: 2px;
}
.contato-info strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink-900);
  font-weight: 500;
}

.contato-form {
  background: var(--cream);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184, 149, 74, 0.12);
}
.form-disclaimer {
  font-size: 12px;
  color: var(--ink-300);
  margin: 16px 0 0;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  margin: 16px 0 0;
  padding: 14px 18px;
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-sm);
  color: var(--gold-900);
  font-size: 14px;
  text-align: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--cream);
  color: var(--ink-500);
  padding: 90px 0 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-mark { width: 80px; height: 80px; margin-bottom: 22px; object-fit: contain; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink-900);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer-name span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 6px;
}
.footer-tag {
  font-size: 14px;
  color: var(--ink-500);
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 500;
  margin: 0 0 10px;
}
.footer-col a, .footer-col span {
  font-size: 14px;
  color: var(--ink-500);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-700); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-300);
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1024px) {
  .entenda-grid { grid-template-columns: 1fr; gap: 24px; }
  .entenda-block { padding: 36px 32px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 60px; }
  .sobre-visual { margin: 0 auto; }
  .contato-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand-mark { width: 76px; height: 76px; }
  .site-header.scrolled .brand-mark { width: 60px; height: 60px; }

  .topbar { font-size: 9.5px; letter-spacing: 0.14em; padding: 9px 0; }
  .topbar-inner { gap: 10px; }
  .topbar-sep { display: none; }

  .site-header { inset: 36px 0 auto 0; }

  .site-nav.is-open {
    display: flex;
    position: fixed;
    inset: 80px 0 0 0;
    background: var(--white);
    flex-direction: column;
    padding: 40px 28px;
    gap: 8px;
    border-top: 1px solid var(--line);
    z-index: 99;
  }
  .site-nav.is-open a {
    font-family: var(--font-serif);
    font-size: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
    color: var(--ink-900) !important;
  }
  .site-header.is-overlay .nav-toggle span { background: var(--white); }

  .hero-fullbleed { min-height: 92vh; }
  .hero-fullbleed .container.hero-content {
    padding-top: 140px;
    padding-bottom: 40px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 17, 10, 0.55) 0%, rgba(20, 17, 10, 0.4) 40%, rgba(20, 17, 10, 0.7) 100%);
  }
  .hero-photo-bg img { object-position: center center; }
  .hero-title { font-size: clamp(34px, 8vw, 52px); margin-bottom: 32px; }
  .hero-kicker { font-size: 10.5px; margin-bottom: 22px; padding-left: 32px; }
  .hero-kicker::before { width: 22px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; margin-top: 48px; padding-top: 22px; }
  .hero-stats strong { font-size: 18px; }
  .hero-stats span { font-size: 12px; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .areas-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .contato-form { padding: 32px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-float svg { width: 24px; height: 24px; }

  .container { padding: 0 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
