@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --black: #09090b;
  --deep: #0f0e0d;
  --stone: #1a1916;
  --ash: #2a2825;
  --mist: #908c86;
  --smoke: #c4c1bc;
  --parchment: #c8b898;
  --gold: #c9a84c;
  --gold-dim: #8a6e30;
  --ivory: #f0e8d8;
  --white: #faf8f4;

  --font-title: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Inter', sans-serif;

  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --glow: 0 0 40px rgba(201, 168, 76, 0.12);
}

/* ─── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  text-align: justify;
}

/* Textos centralizados permanecem centralizados */
h1,
h2,
h3,
h4,
h5,
h6,
.section-label,
.section-title,
nav,
.nav-logo,
.nav-links,
.hero-content,
.hero-title,
.hero-phrase,
.hero-sup,
.tagline-row,
.scroll-hint,
.b1-titulo,
.b1-label,
.b1-texto,
.bloco-1,
footer,
.footer-logo,
.footer-text,
.footer-copy,
.pull-quote blockquote,
.pull-quote cite,
.btn-enter,
.btn-continuar,
.btn-ghost,
.path-number,
.path-name,
.path-arrow,
.portal-num,
.portal-nome,
.options-label,
.options-row,
.overlay-label,
.overlay-h1,
.painel-categoria,
.painel-titulo,
.painel-autor,
.audit-duracao,
.temas-label,
.separador-tema,
.ritual-label,
.ritual-titulo,
.audio-titulo,
.video-titulo,
.grupo-secao,
.grupo-inner,
.b2-inner,
.b2-sub,
.triade-strip,
.triade-item,
.register-citacao,
.cartao-tipo,
.prateleira-header,
.permanecer-label,
.permanecer-titulo {
  text-align: center;
}

/* Parágrafos de conteúdo: justificado */
p,
.ritual-corpo,
.b2-desc,
.texto-caderno,
.fund-corpo,
.pensador-desc,
.painel-nota,
.overlay-texto p,
.stanza p,
.path-desc,
.portal-desc,
.audio-desc,
.video-desc,
.permanecer-par,
.livro-titulo,
.modal-desc {
  text-align: justify;
  text-align-last: left;
}

.hero-phrase,
.manifesto p,
.manifesto-block p,
.footer-text {
  text-align: center;
  text-align-last: center;
}


a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ─── Select / Dropdown ─────────────────────────────────── */
select {
  background-color: var(--stone);
  color: var(--ivory);
}

select option {
  background-color: var(--stone);
  color: var(--ivory);
}

select option:disabled {
  color: var(--mist);
}

/* ─── Noise Texture 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: 9999;
  opacity: 0.4;
}

/* ─── Page Transition ────────────────────────────────────── */
.page-wrap {
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Navigation ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0.95) 0%, transparent 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

/* ─── Hero / Landing ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(40, 35, 25, 0.8) 0%, transparent 60%),
    linear-gradient(180deg, #09090b 0%, #111008 50%, #09090b 100%);
}

/* Pillar lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 168, 76, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-sup {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2.5rem;
  display: block;
  animation: fadeIn 1.6s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--ivory);
  text-transform: uppercase;
  animation: fadeIn 1.4s ease 0.5s both;
  text-shadow: 0 0 80px rgba(201, 168, 76, 0.15);
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.5rem auto;
  animation: fadeIn 1.4s ease 0.8s both;
}

.hero-phrase {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 3.5rem;
  animation: fadeIn 1.4s ease 1s both;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-enter {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1.1rem 3rem;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: fadeIn 1.4s ease 1.3s both;
  display: inline-block;
}

.btn-enter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ivory);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-enter:hover::before {
  transform: translateX(0);
}

.btn-enter:hover {
  color: var(--black);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.btn-enter span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.08);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}

.btn-ghost:hover::before {
  transform: translateX(0);
}

.btn-ghost:hover {
  border-color: var(--gold);
}

/* ─── Scroll Indicator ───────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 2s ease 2s both;
}

.scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ─── Paths Section ──────────────────────────────────────── */
.paths-section {
  padding: 8rem 2rem;
  position: relative;
}

.paths-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  display: block;
  margin-bottom: 1rem;
  padding-top: 3rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--ivory);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

/* ─── Path Cards ─────────────────────────────────────────── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.path-card {
  background: var(--deep);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.path-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.path-card:hover {
  background: var(--stone);
}

.path-card:hover::before {
  transform: scaleX(1);
}

.path-card:hover::after {
  opacity: 1;
}

.path-number {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}

.path-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.path-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mist);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.path-items {
  list-style: none;
  margin-bottom: 2.5rem;
  flex: 1;
}

.path-items li {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition: color 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.path-items li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold-dim);
  border-radius: 50%;
  flex-shrink: 0;
}

.path-card:hover .path-items li {
  color: var(--parchment);
}

.path-feeling {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-dim);
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.path-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s ease;
}

.path-card:hover .path-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Inner Page Hero ────────────────────────────────────── */
.inner-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
}

/* ─── Content Sections ───────────────────────────────────── */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.08);
  margin-top: 4rem;
}

.content-card {
  background: var(--deep);
  padding: 3rem 2.5rem;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-card:hover {
  background: var(--stone);
}

.content-card:hover::before {
  opacity: 1;
}

.content-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0.7;
}

.content-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}

.content-card p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.7;
}

/* ─── Pull Quote ─────────────────────────────────────────── */
.pull-quote {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
}

.pull-quote::before,
.pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.3), transparent);
}

.pull-quote::before {
  top: 0;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3));
}

.pull-quote::after {
  bottom: 0;
  background: linear-gradient(to top, transparent, rgba(201, 168, 76, 0.3));
}

.pull-quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--parchment);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.pull-quote cite {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  position: relative;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 3rem 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.footer-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mist);
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ─── Particles/Dust Effect ──────────────────────────────── */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float var(--dur, 8s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(100%) translateX(0);
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-100%) translateX(var(--drift, 30px));
  }
}

/* ─── Horizontal Rule ────────────────────────────────────── */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 4rem auto;
  max-width: 400px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.65rem;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  nav .nav-links {
    display: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-text {
    position: static;
    transform: none;
    margin: 1rem 0;
  }
}

/* ─── Utility ─────────────────────────────────────────────── */
.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 2rem;
}

.mt-lg {
  margin-top: 4rem;
}