* {
  box-sizing: border-box;
}

:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: rgba(19, 19, 19, 0.88);
  --panel-strong: rgba(26, 26, 26, 0.96);
  --text: #f2ede6;
  --muted: #b8ada1;
  --line: rgba(196, 171, 142, 0.16);
  --gold: #c4ab8e;
  --gold-strong: #e2ccb3;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
  --header-h: 86px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(196, 171, 142, 0.08), transparent 30%),
    linear-gradient(180deg, #030303 0%, #060606 40%, #080808 100%);
  color: var(--text);
}

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

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

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  z-index: -1;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(196, 171, 142, 0.12));
}

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

.brand-title,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Cinzel", serif;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.25s ease;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1.1rem;
}

.section {
  padding: 110px 0;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.panel {
  position: relative;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 28px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-grid,
.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.split-layout.reverse > :first-child {
  order: 2;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.84rem;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.89;
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 14px;
}

.hero-text,
p,
li,
span,
a {
  line-height: 1.7;
}

.hero-text,
p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #cbb295 0%, #ae9272 100%);
  color: #111;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(196, 171, 142, 0.35);
  color: var(--gold-strong);
}

.full {
  width: 100%;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
}

.hero-points li,
.feature-list li,
.step,
.link-stack a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.hero-points li {
  padding: 14px 16px;
  border-radius: 16px;
  color: #ddd1c3;
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(120%, 700px);
  transform: translateY(-90px);
}

.hero-logo {
  width: min(120%, 572px);
  object-fit: contain;
  filter: drop-shadow(0 0 36px rgba(196, 171, 142, 0.10));
  transform: translateY(-70px);
}

/* FECHAMENTO CORRETO DO PRIMEIRO MEDIA */
@media (max-width: 960px) {
  .hero-logo {
    width: min(100%, 520px);
    transform: translateY(-10px);
  }
}

.card,
.showcase-placeholder,
.cta-wrap {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card {
  border-radius: var(--radius);
  padding: 28px;
}

.card-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}

.quote {
  color: var(--gold-strong);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step {
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  color: #ddd1c3;
}

.step strong {
  color: var(--gold-strong);
  font-size: 1.15rem;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.feature-list {
  margin: 18px 0 22px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  border-radius: 14px;
  padding: 12px 14px;
  color: #ddd1c3;
}

.showcase-placeholder {
  min-height: 360px;
  border-radius: 30px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
}

.cta-band {
  padding-top: 40px;
  padding-bottom: 40px;
}

.cta-wrap {
  border-radius: 32px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.link-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.link-stack a {
  border-radius: 14px;
  padding: 14px 16px;
  color: #ddd1c3;
  transition: 0.25s ease;
}

.link-stack a:hover {
  border-color: rgba(196, 171, 142, 0.32);
  color: var(--gold-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse > :first-child {
    order: initial;
  }

  .hero-logo {
    width: min(125%, 620px);
  }

  .cta-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

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

  .brand-subtitle {
    display: none;
  }

  .btn {
    width: 100%;
  }
}