/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
  --black: #1a1a1a;
  --dark: #222222;
  --dark-mid: #2a2a2a;
  --gold: #c9a96e;
  --gold-light: #ddc08e;
  --gold-pale: #efe0c0;
  --gold-ultra: #f7f0e3;
  --white: #ffffff;
  --off-white: #f9f6f1;
  --cream: #f3ece0;
  --muted: #888884;
  --muted-dark: rgba(255, 255, 255, 0.45);
  --border: rgba(201, 169, 110, 0.22);
  --border-strong: rgba(201, 169, 110, 0.48);
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  cursor: default;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
}

/* ══════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════ */
.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 60px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.eyebrow-line::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  outline: none;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 1px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 169, 110, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 15px 36px;
  border-radius: 1px;
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: rgba(201, 169, 110, 0.07);
  border-color: var(--gold);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  padding: 15px 0;
  border-bottom: 1px solid var(--black);
  letter-spacing: 0.18em;
  font-size: 10px;
}

.btn-ghost-dark:hover {
  gap: 16px;
}

.btn-ghost-dark .arrow {
  transition: transform 0.3s var(--ease);
}

.btn-ghost-dark:hover .arrow {
  transform: translateX(4px);
}

/* ornament divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.32s;
}

.reveal-delay-4 {
  transition-delay: 0.44s;
}

.reveal-delay-5 {
  transition-delay: 0.56s;
}


/* ══════════════════════════════════════════════
   CURSOR CUSTOM
══════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

body.hovering .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--gold);
}


/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  background: transparent;
  /* Removido o display: flex para não interferir com o margin: auto do container */
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-container {
  max-width: 1216px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
  /* Ajuste a altura conforme necessário */
  width: auto;
  object-fit: contain;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

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

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

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

.nav-cta {
  padding: 12px 28px;
  font-size: 9px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(12px);
  padding: 30px 30px 40px;
  z-index: 999;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.mobile-menu ul a {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.6) 100%),
    url('hero-bg.jpg') no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  color: var(--white);
}

/* grain texture */
#hero::before {
  content: '';
  position: absolute;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}


/* vertical gold line accent */
.hero-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  animation: lineGrow 2s var(--ease) 0.4s forwards;
}

@keyframes lineGrow {
  to {
    height: 100%;
  }
}

/* Container Hero restaurado para o padrão global */
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}


.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 0.7s var(--ease) 0.2s forwards;
}

.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.4s forwards;
}

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

.hero-subtitle {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.55s forwards;
}

.hero-desc {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 48px;
  max-width: 440px;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.85s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}

.hero-scroll-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* hero right — stats box */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1s forwards;
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.025);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.hero-stat:hover {
  background: rgba(201, 169, 110, 0.04);
}

.hero-stat:hover::after {
  width: 100%;
}

.hero-stat-num {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* wave */
.wave-down {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
}

.wave-down svg {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════ */
#sobre {
  background: var(--off-white);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

#sobre::before {
  content: 'FF';
  position: absolute;
  font-family: var(--font-d);
  font-size: 500px;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.04);
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  background: var(--dark-mid);
}

.sobre-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.6) 100%);
  pointer-events: none;
}

.sobre-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* photo placeholder with initials */
.sobre-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 50%, #1e1e1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.sobre-photo-ff {
  font-family: var(--font-d);
  font-size: 120px;
  font-weight: 400;
  color: rgba(201, 169, 110, 0.35);
  letter-spacing: -0.04em;
  line-height: 1;
}

.sobre-photo-hint {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* decorative frame border */
.sobre-frame-deco {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  z-index: -1;
}

.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -30px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.sobre-badge-num {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.sobre-badge-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  opacity: 0.7;
}


.sobre-title {
  font-family: var(--font-d);
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 28px;
}

.sobre-title em {
  font-style: italic;
  color: #8a6b3e;
}

.sobre-text {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 300;
  color: #5a5a58;
  line-height: 1.9;
  margin-bottom: 18px;
}

.sobre-oab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 10px 18px;
  border-radius: 1px;
  margin-top: 16px;
  margin-bottom: 40px;
}

.sobre-oab-icon {
  font-size: 18px;
  color: var(--gold);
}

.sobre-oab-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.sobre-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.sobre-value-item {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.sobre-value-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.sobre-value-item:hover {
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.1);
}

.sobre-value-item:hover::before {
  width: 100%;
}

.sobre-value-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.sobre-value-title {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}

.sobre-value-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════ */
#servicos {
  background: var(--dark);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

#servicos::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.servicos-header {
  text-align: center;
  margin-bottom: 64px;
}

.servicos-header .eyebrow {
  margin-bottom: 16px;
}

.servicos-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}

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

.servicos-desc {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.servico-card {
  background: var(--dark);
  padding: 44px 36px;
  transition: background 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.servico-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.45s var(--ease);
}

.servico-card:hover {
  background: rgba(201, 169, 110, 0.04);
}

.servico-card:hover::after {
  width: 100%;
}

.servico-num {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 28px;
  display: block;
}

.servico-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s, background 0.3s;
}

.servico-card:hover .servico-icon-wrap {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.servico-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.servico-title {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.servico-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  margin-bottom: 28px;
}

.servico-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.servico-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  transition: opacity 0.3s, border-color 0.3s;
}

.servico-card:hover .servico-tag {
  opacity: 1;
  border-color: var(--border-strong);
}

/* ══════════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════════ */
#diferenciais {
  background: var(--off-white);
  padding: 180px 0 120px;
  position: relative;
}

#diferenciais::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--dark);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}


.diferenciais-title {
  font-family: var(--font-d);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.diferenciais-title em {
  font-style: italic;
  color: #8a6b3e;
}

.diferenciais-text {
  font-size: 15px;
  font-weight: 300;
  color: #5a5a58;
  line-height: 1.9;
  margin-bottom: 48px;
}

.numeros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 48px;
}

.numero-item {
  background: var(--white);
  padding: 28px 24px;
  transition: background 0.3s;
  position: relative;
}

.numero-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.numero-item:hover {
  background: var(--gold-ultra);
}

.numero-item:hover::after {
  width: 100%;
}

.numero-val {
  font-family: var(--font-d);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.numero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}

.diferencial-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.diferencial-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.diferencial-item:hover {
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.12);
}

.diferencial-item:hover::before {
  width: 3px;
}

.diferencial-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-ultra);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}


.diferencial-title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.diferencial-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
#cta {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}


.cta-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 12px;
}

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

.cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.06em;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════ */
#contato {
  background: var(--off-white);
  padding: 110px 0 120px;
}

.contato-header {
  text-align: center;
  margin-bottom: 72px;
}

.contato-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contato-title em {
  font-style: italic;
  color: #8a6b3e;
}

.contato-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.8;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

/* Contact info */

.contato-info-title {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: padding-left 0.3s var(--ease);
}

.info-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.info-item:hover {
  padding-left: 6px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}

.info-item:hover .info-icon {
  background: var(--gold-ultra);
  border-color: var(--gold);
}


.info-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.info-value {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.5;
}

.info-value a {
  color: var(--black);
  transition: color 0.3s;
}

.info-value a:hover {
  color: var(--gold);
}

.contato-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px 16px;
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-ultra);
}

/* Map */
.contato-map {
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: relative;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  align-self: stretch;
  height: 100%;
  display: flex;
}

.contato-map:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.15);
}

.contato-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* Form */
.contato-form {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.contato-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.form-title {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
}

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

.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}

.form-input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.form-group:focus-within .form-input-line {
  width: 100%;
}

.form-select {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
}

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

.form-textarea {
  resize: none;
  line-height: 1.7;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 10px;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  background: var(--black);
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}


.footer-logo {
  margin-bottom: 24px;
  display: block;
  transition: opacity 0.3s;
}

.footer-logo img {
  height: 48px;
  /* Logo do footer um pouco maior */
  width: auto;
  object-fit: contain;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-tagline {
  font-family: var(--font-d);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-oab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
}

.footer-social-links {
  display: flex;
  gap: 16px;
}

.footer-social-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

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

/* back to top */
.back-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease);
  z-index: 100;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s var(--ease);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  background: #20b355;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .navbar-container {
    padding: 0 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-stats {
    max-width: 400px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sobre-img-wrap {
    max-width: 420px;
  }

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

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

  .diferenciais-list {
    margin-top: 0;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Ocultar cursor personalizado em tablets e celulares */
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #navbar {
    height: 76px;
  }

  .mobile-menu {
    top: 76px;
  }

  .navbar-container {
    padding: 0 24px;
    /* Espaçamento lateral para logo e menu */
  }

  .container {
    padding: 0 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat {
    padding: 28px 20px;
  }

  .hero-stat-num {
    font-size: 36px;
  }

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

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

  .sobre-values {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .contato-form {
    padding: 36px 28px;
  }

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

  .back-top {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
  }

  #hero {
    padding: 100px 0 80px;
  }
}