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

:root {
  --preto: #080808;
  --preto-2: #111111;
  --preto-3: #1a1a1a;
  --dourado: #c9a84c;
  --dourado-dim: rgba(201, 168, 76, 0.15);
  --dourado-line: rgba(201, 168, 76, 0.3);
  --offwhite: #f0ede8;
  --muted: #888880;
  --borda: rgba(201, 168, 76, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--preto);
  color: var(--offwhite);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--dourado);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
}
.cursor.hover {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--dourado);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* 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;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  border-color: var(--borda);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--offwhite);
}
.nav-logo span {
  color: var(--dourado);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--dourado);
}

.nav-cta {
  font-family: "Lato", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--dourado);
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--offwhite);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--dourado-line), transparent);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 6rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-num {
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
  font-family: "Playfair Display", serif;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Lato", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--dourado);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--dourado);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* BOTÕES */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--dourado);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--offwhite);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-gold:hover::before {
  transform: translateX(0);
}
.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--borda);
  padding-bottom: 0.2rem;
  transition: all 0.25s;
}
.btn-ghost:hover {
  color: var(--dourado);
  border-color: var(--dourado);
}

/* Hero right */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--preto-2) 0%, var(--preto-3) 100%);
}
.hero-right-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-right-circle {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.hero-right-circle::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid var(--borda);
  padding: 1.2rem 1.6rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.hero-right-text {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Lato", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.3);
  white-space: nowrap;
}

/* SEÇÃO GENÉRICA */
section {
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Lato", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--dourado);
}

/* SOBRE */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--borda);
}

.sobre-left {
  padding: 7rem 5rem 7rem 4rem;
  border-right: 1px solid var(--borda);
}

.sobre-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.sobre-left h2 em {
  font-style: italic;
  color: var(--dourado);
}
.sobre-left p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.sobre-right {
  padding: 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat {
  padding: 2rem;
  background: var(--preto-2);
  border: 1px solid var(--borda);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ESPECIALIDADES */
.especialidades {
  padding: 7rem 4rem;
  border-top: 1px solid var(--borda);
}

.especialidades-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.especialidades-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 400px;
}
.especialidades-header p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 320px;
  text-align: right;
}

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

.area-card {
  background: var(--preto);
  padding: 3rem 2.5rem;
  border: 1px solid transparent;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--dourado);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.area-card:hover {
  background: var(--preto-2);
  border-color: var(--borda);
}
.area-card:hover::before {
  transform: scaleX(1);
}

.area-num {
  font-family: "Playfair Display", serif;
  font-size: 0.75rem;
  color: var(--dourado);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.area-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--offwhite);
  line-height: 1.3;
}
.area-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* DEPOIMENTOS */
.depoimentos {
  padding: 7rem 4rem;
  border-top: 1px solid var(--borda);
  background: var(--preto-2);
}

.depoimentos h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

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

.depo-card {
  padding: 2.5rem;
  border: 1px solid var(--borda);
  position: relative;
}
.depo-aspas {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--dourado);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 1rem;
}
.depo-texto {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.depo-autor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.depo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dourado-dim);
  border: 1px solid var(--borda);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  color: var(--dourado);
}
.depo-nome {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.depo-cargo {
  font-size: 0.7rem;
  color: var(--muted);
}

/* CTA FINAL */
.cta-section {
  padding: 8rem 4rem;
  border-top: 1px solid var(--borda);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta-left h2 em {
  font-style: italic;
  color: var(--dourado);
}
.cta-left p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.cta-right {
  background: var(--preto-2);
  border: 1px solid var(--borda);
  padding: 3rem;
}
.cta-right-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--offwhite);
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--borda);
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.25s;
}
.contato-item:last-child {
  border-bottom: none;
}
.contato-item:hover {
  color: var(--dourado);
}
.contato-item-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--borda);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  color: var(--dourado);
}

/* FOOTER */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--borda);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
footer a {
  color: var(--dourado);
  text-decoration: none;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #25d366;
  color: #fff;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

/* ANIMAÇÕES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* FIX: cursor visível e elemento oculto no mobile */
@media (max-width: 900px) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }

  .nav {
    padding: 1.2rem 1.5rem;
  }
  .nav.scrolled {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero::after {
    display: none;
  }
  .hero-left {
    padding: 8rem 1.5rem 4rem;
  }
  .hero-right {
    display: none;
  }

  .sobre {
    grid-template-columns: 1fr;
  }
  .sobre-left {
    padding: 4rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--borda);
  }
  .sobre-right {
    padding: 4rem 1.5rem;
  }

  .especialidades {
    padding: 4rem 1.5rem;
  }
  .especialidades-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .especialidades-header p {
    text-align: left;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .depoimentos {
    padding: 4rem 1.5rem;
  }
  .depo-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}