:root {
  --black: #060504;
  --gold: #b48f0e;
  --gold-light: #d4aa20;
  --gold-pale: #e8c84a;
  --gold-dim: rgba(180, 143, 14, 0.12);
  --gold-border: rgba(180, 143, 14, 0.25);
  --white: #faf8f4;
  --white-dim: rgba(250, 248, 244, 0.06);
  --white-muted: rgba(250, 248, 244, 0.5);
  --white-soft: rgba(250, 248, 244, 0.82);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  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.035'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

.tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}

.h-display em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .h-display {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-gold {
  background: var(--gold);
  color: #050401;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(180, 143, 14, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  width: 100%;
  justify-content: center;
}

.btn-ghost:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 19px 44px;
  font-size: 0.8rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 44px;
  transition: all 0.45s var(--ease);
}

.nav.scrolled {
  background: rgba(6, 5, 4, 0.92);
  backdrop-filter: blur(18px);
  padding: 16px 44px;
  border-bottom: 1px solid var(--gold-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--white-soft);
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 10px 22px;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--gold);
  color: #050401;
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(180, 143, 14, 0.2) 0%, transparent 65%);
  top: -180px;
  right: -180px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 143, 14, 0.12) 0%, transparent 65%);
  bottom: -100px;
  left: -120px;
  animation-delay: -6s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 170, 32, 0.08) 0%, transparent 65%);
  top: 40%;
  left: 30%;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.04); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(180, 143, 14, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 143, 14, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 30%, transparent 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(180, 143, 14, 0.25), transparent);
  height: 60%;
}

.hero-lines::before {
  left: 15%;
  top: 20%;
  transform: rotate(-8deg);
}

.hero-lines::after {
  right: 15%;
  top: 15%;
  transform: rotate(8deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}

.hero-title-top {
  display: block;
  color: var(--white);
}

.hero-title-bot {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--white-muted);
  line-height: 1.75;
  margin-bottom: 52px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white-muted);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.sobre {
  padding: 130px 0;
  border-top: 1px solid var(--gold-border);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.sobre-text {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--white-muted);
  line-height: 1.85;
  margin-top: 24px;
}

.sobre-text + .sobre-text {
  margin-top: 16px;
}

.sobre-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
}

.sobre-card {
  padding: 28px 32px;
  background: var(--white-dim);
  transition: background 0.3s;
}

.sobre-card:hover {
  background: rgba(180, 143, 14, 0.08);
}

.sobre-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sobre-card-value {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--white-soft);
  font-weight: 400;
  line-height: 1.5;
}

.servicos {
  padding: 130px 0;
  background: linear-gradient(180deg, transparent, rgba(180, 143, 14, 0.025) 50%, transparent);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}

.servico {
  padding: 48px 44px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}

.servico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.servico:hover {
  background: rgba(180, 143, 14, 0.04);
}

.servico:hover::before {
  transform: scaleX(1);
}

.servico-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(180, 143, 14, 0.12);
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.02em;
  display: block;
}

.servico-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.servico-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.servico-text {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.8;
}

.avulso-section-full {
  padding: 130px 0;
  border-top: 1px solid var(--gold-border);
  position: relative;
}

.avulso-section-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.avulso-header {
  text-align: center;
  margin-bottom: 64px;
}

.avulso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.avulso {
  background: var(--white-dim);
  border: 1px solid var(--gold-border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.35s var(--ease);
  position: relative;
  border-radius: 2px;
}

.avulso::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(180, 143, 14, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.avulso:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.avulso:hover::after {
  opacity: 1;
}

.avulso-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.avulso-desc {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.75;
}

.avulso-cta {
  margin-top: auto;
}

.processo {
  padding: 130px 0;
  background: linear-gradient(180deg, transparent, rgba(180, 143, 14, 0.025) 50%, transparent);
}

.processo-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.8;
}

.step-connector {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(180, 143, 14, 0.3), transparent);
  margin: 14px 0 14px 39px;
}

.contato {
  padding: 130px 0;
  border-top: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contato-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(180, 143, 14, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.contato-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.contato-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.contato-title em {
  color: var(--gold);
  font-style: italic;
}

.contato-sub {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-bottom: 52px;
  letter-spacing: 0.04em;
}

.contato-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contato-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--white-muted);
  transition: color 0.3s;
}

.contato-item:hover {
  color: var(--gold);
}

.contato-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contato-sep {
  width: 1px;
  height: 14px;
  background: var(--gold-border);
}

.footer {
  border-top: 1px solid var(--gold-border);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white-muted);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.25);
  letter-spacing: 0.05em;
}

.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.35s var(--ease);
  animation: waPulse 3s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.07); }
}

@media (max-width: 960px) {
  .nav {
    padding: 20px 24px;
  }
  .nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(6, 5, 4, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px 36px;
    transition: right 0.45s var(--ease);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .nav-cta {
    border: none;
    padding: 0;
    color: var(--gold);
  }
  .hamburger {
    display: flex;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .avulso-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .contato-actions {
    flex-direction: column;
    align-items: center;
  }
  .contato-sep {
    display: none;
  }
  .contato-info {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }
  .step-num {
    font-size: 2.5rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250, 248, 244, 0.4);
  transition: color 0.3s;
}

.footer-instagram:hover {
  color: var(--gold);
}
