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

:root {
  --black: #000000;
  --black2: #0a0a0a;
  --black3: #111111;
  --black4: #1a1a1a;
  --gold: #d4af37;
  --gold-lt: #f5d76e;
  --gold-dk: #b8942f;
  --white: #ffffff;
  --white2: rgba(255, 255, 255, 0.85);
  --white3: rgba(255, 255, 255, 0.55);
  --white4: rgba(255, 255, 255, 0.15);
  --silver: #c0c0c0;
  --trans: .35s cubic-bezier(.4, 0, .2, 1);
  --trans-slow: .7s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white2);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
}

h3 {
  font-size: 1.15rem;
}

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

a {
  text-decoration: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   BARRA DE PROGRESSO
=========================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  z-index: 10000;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(212, 175, 55, .6);
}


/* ===========================
   PARTICLES CANVAS
=========================== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ===========================
   SECTION TAGS & HEADERS
=========================== */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-line-top {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 80px;
  opacity: .4;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(16px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(212, 175, 55, .15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  line-height: 1.1;
}

.nav-sub {
  font-size: .55rem;
  letter-spacing: .2em;
  color: var(--silver);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white3);
  position: relative;
  transition: color var(--trans);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background var(--trans), transform var(--trans);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: transform var(--trans), opacity var(--trans);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: 100px 28px 80px;
  z-index: 1;
}

/* Linhas de fundo animadas */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  pointer-events: none;
}

.h-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, .08) 30%, rgba(212, 175, 55, .12) 60%, transparent 100%);
  animation: line-pulse 4s ease-in-out infinite;
}

.h-line:nth-child(2) {
  animation-delay: .8s;
}

.h-line:nth-child(3) {
  animation-delay: 1.6s;
}

.h-line:nth-child(4) {
  animation-delay: 2.4s;
}

.h-line:nth-child(5) {
  animation-delay: 3.2s;
}

@keyframes line-pulse {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Logo hero */
.hero-logo {
  width: clamp(200px, 32vw, 300px);
  margin-bottom: 32px;
  animation: logo-float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(212, 175, 55, .2));
}

.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@keyframes logo-float {

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

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

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Texto principal */
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: .25em;
  background: linear-gradient(135deg, #f5d76e 0%, #d4af37 40%, #ffffff 55%, #d4af37 70%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes shimmer-text {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.hero-tagline {
  font-size: clamp(.6rem, 1.5vw, .9rem);
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 6px;
  margin-bottom: 24px;
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.divider-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider-diamond {
  color: var(--gold);
  font-size: .7rem;
  animation: rotate-slow 8s linear infinite;
}

@keyframes rotate-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero-desc {
  font-size: 1rem;
  color: var(--white3);
  max-width: 480px;
  margin-bottom: 14px;
  font-weight: 300;
}



.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, .4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--white3);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: border-color var(--trans), color var(--trans), transform var(--trans);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}



.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-grow 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-grow {

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

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ===========================
   NÚMEROS
=========================== */
.numeros {
  position: relative;
  z-index: 1;
  background: var(--black2);
  border-top: 1px solid rgba(212, 175, 55, .2);
  border-bottom: 1px solid rgba(212, 175, 55, .2);
  padding: 44px 28px;
}

.numeros-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.num-item {
  text-align: center;
  min-width: 130px;
}

.num-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.num-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white3);
}

.num-sep {
  color: var(--gold);
  opacity: .4;
  font-size: .8rem;
}

/* ===========================
   CREDENCIAIS BANNER
=========================== */
.credenciais-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1500 50%, #0d0d0d 100%);
  border-top: 1px solid rgba(212, 175, 55, .15);
  border-bottom: 1px solid rgba(212, 175, 55, .15);
  padding: 18px 28px;
  overflow: hidden;
}

.credenciais-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .04), transparent);
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.credenciais-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, .75);
  white-space: nowrap;
}

.cred-icon {
  font-size: 1rem;
}

.cred-sep {
  color: var(--gold);
  opacity: .25;
  font-size: .6rem;
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal-up .9s cubic-bezier(.4, 0, .2, 1) forwards;
  animation-delay: .2s;
}

.reveal-text-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up .8s cubic-bezier(.4, 0, .2, 1) forwards;
  animation-delay: .5s;
}

.reveal-fade {
  opacity: 0;
  animation: fade-in .8s ease forwards;
  animation-delay: .7s;
}

.reveal-fade-delay {
  opacity: 0;
  animation: fade-in .8s ease forwards;
  animation-delay: .9s;
}

.reveal-fade-delay2 {
  opacity: 0;
  animation: fade-in .8s ease forwards;
  animation-delay: 1.1s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

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

/* ===========================
   SOBRE
=========================== */
.sobre {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
  background: var(--black);
}

.sobre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sobre-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.sobre-frame {
  position: relative;
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: var(--black3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, .15);
  overflow: hidden;
}

/* Cantos decorativos */
.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .6;
  transition: opacity var(--trans), width var(--trans), height var(--trans);
}

.sobre-frame:hover .frame-corner {
  opacity: 1;
  width: 32px;
  height: 32px;
}

.frame-corner.tl {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.frame-corner.tr {
  top: 12px;
  right: 12px;
  border-width: 1px 1px 0 0;
}

.frame-corner.bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 1px 1px;
}

.frame-corner.br {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.sobre-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}



/* Foto real da advogada */
.sobre-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
  display: block;
}



.sobre-text h2 {
  margin-bottom: 20px;
}

.sobre-text>p {
  color: var(--white3);
  font-size: .9rem;
  margin-bottom: 14px;
}

.diferenciais {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  width: 100%;
}

.dif-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  max-width: 480px;
  width: 100%;
}

.dif-icon {
  color: var(--gold);
  font-size: .7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.dif-item strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 3px;
}

.dif-item p {
  font-size: .82rem;
  color: var(--white3);
  margin: 0;
}

/* ===========================
   COMO FUNCIONA
=========================== */
.como-funciona {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--black2);
  border-top: 1px solid rgba(212, 175, 55, .1);
  border-bottom: 1px solid rgba(212, 175, 55, .1);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}

.step-card:hover {
  border-color: rgba(212, 175, 55, .3);
  background: rgba(212, 175, 55, .03);
  transform: translateY(-8px);
}

.step-num-wrap {
  margin-bottom: 12px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .3;
  display: block;
  line-height: 1;
  transition: opacity var(--trans);
}

.step-card:hover .step-num {
  opacity: .7;
}

.step-icon-wrap {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
  transition: transform var(--trans);
}

.step-card:hover .step-icon-wrap {
  transform: scale(1.2) translateY(-3px);
}

.step-line-h {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
  margin: 0 auto 16px;
  transition: width var(--trans), opacity var(--trans);
}

.step-card:hover .step-line-h {
  width: 60px;
  opacity: .8;
}

.step-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.step-card p {
  font-size: .82rem;
  color: var(--white3);
}

.step-connector {
  color: var(--gold);
  opacity: .2;
  font-size: .8rem;
  align-self: center;
  padding: 0 8px;
}

/* ===========================
   ÁREAS
=========================== */
.areas {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
  background: var(--black);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, .08);
  border: 1px solid rgba(212, 175, 55, .08);
}

.area-card {
  background: var(--black);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background var(--trans);
  cursor: default;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--trans);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card:hover {
  background: rgba(212, 175, 55, .05);
}

.area-icon-wrap {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
  transition: transform var(--trans);
}

.area-card:hover .area-icon-wrap {
  transform: scale(1.2) translateY(-4px);
}

.area-card h3 {
  color: var(--white2);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
}

.area-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .3;
  margin: 12px auto 0;
  transition: width var(--trans), opacity var(--trans);
}

.area-card:hover .area-line {
  width: 48px;
  opacity: .7;
}

/* ===========================
   TOOLTIP GLOBAL
=========================== */
.global-tooltip {
  position: fixed;
  z-index: 9997;
  background: rgba(10, 10, 10, .95);
  border: 1px solid rgba(212, 175, 55, .3);
  color: var(--white2);
  font-size: .72rem;
  font-family: 'Montserrat', sans-serif;
  padding: 8px 14px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  max-width: 220px;
  line-height: 1.5;
  white-space: normal;
  text-align: center;
}

.global-tooltip.visible {
  opacity: 1;
}

/* ===========================
   DEPOIMENTOS
=========================== */
.depoimentos {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--black2);
  border-top: 1px solid rgba(212, 175, 55, .1);
}

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

.depo-card {
  background: var(--black3);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 2px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  backdrop-filter: blur(4px);
}

.depo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, .04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
}

.depo-card:hover::before {
  opacity: 1;
}

.depo-card:hover {
  border-color: rgba(212, 175, 55, .3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(212, 175, 55, .1);
}

.depo-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, .08), rgba(0, 0, 0, .6));
  border-color: rgba(212, 175, 55, .3);
}

.depo-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--gold);
  opacity: .25;
  margin-bottom: 12px;
  font-weight: 300;
}

.depo-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depo-card>p {
  font-size: .875rem;
  font-style: italic;
  color: var(--white3);
  margin-bottom: 24px;
  line-height: 1.8;
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.depo-autor strong {
  display: block;
  font-size: .88rem;
  color: var(--white);
}

.depo-autor span {
  font-size: .72rem;
  color: var(--white3);
}

/* ===========================
   FAQ
=========================== */
.faq {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
  background: var(--black);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, .12);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, .3);
}

.faq-item.open {
  border-color: rgba(212, 175, 55, .4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--white2);
  transition: color var(--trans), background var(--trans);
}

.faq-question:hover {
  color: var(--white);
  background: rgba(212, 175, 55, .03);
}

.faq-item.open .faq-question {
  color: var(--gold);
  background: rgba(212, 175, 55, .04);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--trans);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s ease;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--white3);
  line-height: 1.8;
}

.faq-answer strong {
  color: var(--gold);
  font-weight: 600;
}

/* ===========================
   CONTATO
=========================== */
.contato {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
  background: var(--black);
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contato-info h2 {
  margin-bottom: 16px;
}

.contato-info>p {
  color: var(--white3);
  font-size: .9rem;
  margin-bottom: 36px;
}

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-icon-wrap {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.c-item strong {
  display: block;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.c-item p {
  font-size: .875rem;
  color: var(--white3);
  margin: 0;
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  margin-top: 32px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

/* Form */
.form-wrap {
  background: var(--black3);
  border: 1px solid rgba(212, 175, 55, .15);
  border-radius: 4px;
  padding: 44px;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.form-header-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .5;
}

.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white3);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}

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

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, .05);
}

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

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

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, .35);
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: translateX(-100%);
  animation: shimmer-btn 2.5s ease-in-out infinite;
}

@keyframes shimmer-btn {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.form-nota {
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .3);
  color: #25d366;
  border-radius: 2px;
  padding: 12px 16px;
  font-size: .82rem;
  font-weight: 500;
  margin-top: 14px;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--black2);
  padding: 56px 0;
  text-align: center;
}

.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
  margin-bottom: 56px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

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

.footer-logo strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .15em;
}

.footer-logo span {
  font-size: .55rem;
  letter-spacing: .2em;
  color: var(--silver);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  transition: color var(--trans);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.soc-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 175, 55, .6);
  transition: border-color var(--trans), color var(--trans), transform var(--trans), background var(--trans);
}

.soc-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(212, 175, 55, .08);
}

.footer-copy {
  font-size: .72rem;
  color: rgba(255, 255, 255, .2);
  line-height: 1.8;
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.wf-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform var(--trans), box-shadow var(--trans);
}

.wf-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .6);
}

.wf-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .7;
  }

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

.wf-tooltip {
  position: absolute;
  right: 68px;
  background: var(--black3);
  border: 1px solid rgba(212, 175, 55, .25);
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.wf-btn:hover .wf-tooltip {
  opacity: 1;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .sobre-visual {
    max-width: 380px;
    margin: 0 auto;
  }

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

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

  .depo-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .step-connector {
    display: none;
  }

  .steps-grid {
    gap: 12px;
  }

  .step-card {
    min-width: 160px;
  }
}

@media (max-width: 768px) {



  .navbar {
    padding: 16px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(0, 0, 0, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transform: translateX(100%);
    transition: transform var(--trans);
    z-index: 999;
  }

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

  .nav-link {
    font-size: .9rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .hero-logo {
    width: clamp(160px, 50vw, 220px);
  }

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

  .form-wrap {
    padding: 28px 20px;
  }

  .num-sep {
    display: none;
  }

  .credenciais-inner {
    gap: 10px;
  }

  .cred-sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    justify-content: center;
    text-align: center;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .faq-question {
    font-size: .82rem;
    padding: 16px 18px;
  }
}