:root {
  --gold: #DEA11C;
  --gold-light: #fccf6f;
  --gold-pale: #F5E6C0;
  --gold-dark: #9A7A2E;
  --black: #000000;
  --black-rich: #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #1E1E1E;
  --white: #FFFFFF;
  --white-muted: #E8E8E8;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Raleway', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Esconde o cursor padrão do Windows/Mac em todo o site */
body, a, button {
  cursor: none !important;
}

/* ── GLOBAL LINK RESET ── */
a {
  color: inherit;
  text-decoration: none;
}


html {
  font-size: 16px;
}

body {
  background: var(--black-rich);
  color: var(--white-muted);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
/* Localize e substitua o estilo do #cursor */
#cursor {
  position: fixed;
  width: 0;
  height: 0;
  /* Triângulo Amarelo */
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 14px solid var(--gold);
  
  pointer-events: none;
  z-index: 9999;
  
  /* Inclinado para a esquerda e ajuste de centralização */
  /* A rotação faz a ponta do triângulo virar o "pointer" */
  transform: translate(-50%, -50%) rotate(-30deg); 
  transition: transform 0.1s ease-out, border-bottom-color 0.3s;
}

/* Esconder o círculo antigo definitivamente */
#cursorRing {
  display: none !important;
}

/* Efeito ao passar em links */
#cursor.hover {
  border-bottom-color: var(--gold-dark);
  transform: translate(-50%, -50%) rotate(-30deg) scale(1.2);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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: 1;
  opacity: 0.4;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.8rem 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gray-light);
  font-weight: 300;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--black-rich);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-left {
  padding: 10rem 4rem 6rem 8rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-title .name-line {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2rem 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 0.4rem;
}

/* Hero Statue Image */
.hero-right {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statue-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.statue-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.statue-img {
  height: 92%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  animation: statueReveal 1.4s 0.3s ease forwards;
  filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.15));
  mix-blend-mode: lighten;
}

@keyframes statueReveal {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.statue-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black-rich) 0%, transparent 25%, transparent 75%, var(--black-rich) 100%),
    linear-gradient(to bottom, var(--black-rich) 0%, transparent 15%, transparent 85%, var(--black-rich) 100%);
  pointer-events: none;
  z-index: 2;
}

.statue-glow-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: pulseRing 4s ease-in-out infinite;
}

.statue-glow-ring:nth-child(2) {
  width: 520px;
  height: 520px;
  animation-delay: 0.8s;
  border-color: rgba(201, 168, 76, 0.06);
}

.statue-glow-ring:nth-child(3) {
  width: 640px;
  height: 640px;
  animation-delay: 1.6s;
  border-color: rgba(201, 168, 76, 0.03);
}

@keyframes pulseRing {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 1;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-mouse::after {
  content: '';
  width: 2px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--gold);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.strip-track {
  display: flex;
  gap: 3rem;
  animation: stripScroll 20s linear infinite;
  white-space: nowrap;
}

.strip-item {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.strip-item::before {
  content: '◆';
  font-size: 0.5rem;
}

@keyframes stripScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION BASE ── */
section {
  position: relative;
  z-index: 2;
}

.section-pad {
  padding: 8rem 8rem;
}

.section-pad-sm {
  padding: 5rem 8rem;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

/* ── PROBLEMA/SOLUÇÃO ── */
#problema {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.problema-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--gray-light);
  margin-top: 2rem;
  font-weight: 300;
}

.problema-text strong {
  color: var(--gold-light);
  font-weight: 500;
}

.problema-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problema-card {
  border: 1px solid var(--black-border);
  padding: 1.8rem;
  background: var(--black-card);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.problema-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s;
}

.problema-card:hover::before {
  transform: scaleY(1);
}

.problema-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
}

.problema-card-icon {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.problema-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.problema-card-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ── SOBRE ── */
#sobre {
  background: var(--black-rich);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-image-wrapper {
  position: relative;
}

.sobre-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.sobre-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante que a imagem preencha o espaço sem distorcer */
  display: block;
}

.sobre-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, var(--black-card) 0%, #1a1a1a 100%);
}

.sobre-image-placeholder .icon {
  font-size: 3rem;
  opacity: 0.3;
}

.sobre-image-placeholder p {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.sobre-corner {
  position: absolute;
  width: 60px;
  height: 60px;
}

.sobre-corner-tl {
  top: -10px;
  left: -10px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.sobre-corner-br {
  bottom: -10px;
  right: -10px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.sobre-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  text-align: center;
}

.sobre-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.sobre-badge-txt {
  font-family: var(--font-ui);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}

.sobre-text {
  font-size: 1.15rem;
  line-height: 1.95;
  color: var(--gray-light);
  font-weight: 300;
  margin-top: 2rem;
}

.sobre-text strong {
  color: var(--gold-light);
  font-weight: 500;
}

.sobre-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.credential-tag {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.4rem 1rem;
}

.oab-number {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 2rem;
}

.oab-number strong {
  color: var(--gold);
}

/* ── SERVIÇOS ── */
#servicos {
  background: var(--black-soft);
}

.servicos-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.servicos-header .section-label {
  justify-content: center;
}

.servicos-header .section-label::before {
  display: none;
}

.servicos-header p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 1.5rem;
  font-weight: 300;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black-border);
}

.servico-card {
  background: var(--black-card);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.servico-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.servico-card:hover {
  background: #1a1a1a;
}

.servico-card:hover::after {
  opacity: 1;
}

.servico-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.servico-icon {
  margin-bottom: 1.2rem;
  display: block;
}

.servico-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.servico-subtitle {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.servico-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 300;
}

.servico-topics {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.servico-topic {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.servico-topic::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── NÚMEROS / RESULTADOS ── */
#resultados {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
}

.resultados-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: center;
}

.resultados-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray);
  margin-top: 2rem;
  font-weight: 300;
}

.numeros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--black-border);
}

.numero-item {
  background: var(--black-card);
  padding: 3rem;
  text-align: center;
  transition: background 0.3s;
}

.numero-item:hover {
  background: #1a1a1a;
}

.numero-val {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.numero-val sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.numero-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 0.8rem;
}

/* ── DIFERENCIAIS ── */
#diferenciais {
  background: var(--black-soft);
}

.diferenciais-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.diferenciais-header .section-label {
  justify-content: center;
}

.diferenciais-header .section-label::before {
  display: none;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.diferencial-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--black-border);
  transition: border-color 0.3s, transform 0.3s;
}

.diferencial-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.diferencial-icon {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}

.diferencial-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.diferencial-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PROCESSO ── */
#processo {
  background: var(--black-rich);
}

.processo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.processo-sticky {
  position: sticky;
  top: 8rem;
}

.processo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.processo-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--black-border);
  transition: opacity 0.3s;
}

.processo-step:last-child {
  border-bottom: none;
}

.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-num {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  flex: 1;
  background: var(--black-border);
  margin-top: 8px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
  padding-top: 0.6rem;
}

.step-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ── DEPOIMENTOS ── */
#depoimentos {
  background: var(--black-soft);
}

.depoimentos-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.depoimentos-header .section-label {
  justify-content: center;
}

.depoimentos-header .section-label::before {
  display: none;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}

.depoimento-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.depo-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.12);
  line-height: 0.8;
  margin-bottom: 1.2rem;
}

.depo-text {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
}

.depo-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.depo-avatar {
  width: 42px;
  height: 42px;
  background: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.depo-name {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.depo-role {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-top: 0.2rem;
}

/* ── FAQ ── */
#faq {
  background: var(--black-rich);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
}

.faq-sticky {
  position: sticky;
  top: 8rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--black-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-q-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white-muted);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-a-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 1.8rem;
}

/* ── CTA FINAL ── */
#cta {
  background: var(--black-rich);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-inner .section-label {
  justify-content: center;
}

.cta-inner .section-label::before {
  display: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin: 1.5rem 0;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto 3rem;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn-whatsapp:hover::before {
  transform: translateX(0);
}

.btn-whatsapp span {
  position: relative;
  z-index: 1;
}

.cta-disclaimer {
  margin-top: 2rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.cta-disclaimer strong {
  color: var(--gold-pale);
}

/* ── CONTATO ── */
#contato {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contato-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contato-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contato-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contato-info-label {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 0.3rem;
}

.contato-info-value {
  font-size: 1rem;
  color: var(--white-muted);
  font-weight: 300;
}

.contato-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 3rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  transition: background 0.3s, border-color 0.3s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white-muted);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select option {
  background: var(--black-soft);
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.btn-form {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-form:hover {
  background: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 5rem 8rem 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--black-border);
}

.footer-brand-logo {
  display: block;
  margin-bottom: 1.2rem;
}

.footer-brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand-logo-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-brand-logo-text span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: var(--gray);
  font-weight: 300;
  margin-top: 3px;
}

.footer-brand-desc {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
  max-width: 240px;
  margin-bottom: 1.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-links a {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col-links a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold-dark);
  flex-shrink: 0;
  transition: width 0.3s, background 0.3s;
}

.footer-col-links a:hover {
  color: var(--gold-light);
}

.footer-col-links a:hover::before {
  width: 18px;
  background: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.footer-oab {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.footer-oab strong {
  color: var(--gold-dark);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  footer {
    padding: 4rem 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

}

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floatBounce 3s ease-in-out infinite;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
  animation: none;
}

.float-wa svg {
  width: 26px;
  height: 26px;
  fill: var(--black);
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* ── SVG ICONS ── */
.card-icon-svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  stroke: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.contato-icon-svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--gold);
  display: block;
}

.diferencial-icon .card-icon-svg {
  margin: 0 auto 1.2rem;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── HERO TEXT ANIMATION ── */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.6s ease forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mobile {
  display: none;
}

/* ── MOBILE ── */
@media (max-width: 1100px) {
  .section-pad {
    padding: 6rem 4rem;
  }

  .section-pad-sm {
    padding: 4rem 4rem;
  }

  .hero-left {
    padding: 8rem 3rem 4rem 4rem;
  }

  nav {
    padding: 1.2rem 2rem;
  }

  nav.scrolled {
    padding: 0.8rem 2rem;
  }

  footer {
    padding: 2.5rem 4rem;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Impede o overflow horizontal global */
  html,
  body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }

  /* 2.2 Remover imagem da Hero Section no mobile */
  .hero-right {
    display: none !important;
  }

  /* Centralizar o texto da Hero após remover a imagem */
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    margin: 0 auto 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  .section-pad {
    padding: 4rem 1.5rem;
  }

  .section-pad-sm {
    padding: 3rem 1.5rem;
  }

  nav {
    padding: 1rem 1.5rem;
  }

  nav.scrolled {
    padding: 1rem 1.5rem;
    height: 120px;

    & img {
      margin-top: -15px;
    }
  }

  .nav-links {
    display: none;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  #hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero-left {
    padding: 7rem 1.5rem 3rem;
    grid-row: 2;
  }

  .hero-right {
    height: 50vh;
    grid-row: 1;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .problema-grid,
  .sobre-grid,
  .resultados-inner,
  .processo-grid,
  .faq-grid,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .scroll-hint {
    display: none;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
  }

  .numeros-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sobre-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .processo-sticky {
    position: static;
  }

  .nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    /* Alinhado à direita */
    bottom: 0;
    width: 50%;
    /* Ocupa apenas metade da largura */
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    /* Espaçamento equilibrado */
    z-index: 999;
    transform: translateX(100%);
    /* Começa fora da tela à direita */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-mobile.open {
    transform: translateX(0);
  }

  /* Ajuste do tamanho dos links no mobile */
  .nav-mobile a {
    font-size: 1.1rem;
    /* Fonte menor e mais elegante */
    font-family: var(--font-ui);
    letter-spacing: 0.1em;
    font-weight: 400;
  }

  .nav-mobile a:hover {
    color: var(--gold);
  }

  .nav-logo {
    margin-left: -50px;
    width: auto;
    height: 50px;
  }
  .nav-mobile .nav-mobile-cta {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 1rem 2.5rem;
    margin-top: 1rem;
  }

  footer {
    padding: 3rem 1.5rem 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
   
}