/* ==========================================================================
   DAFNIS PRIEBE — SITE OFICIAL
   Sistema de Design — edite as variáveis abaixo para alterar cores,
   tipografia, espaçamentos e demais estilos globais do site.
   ========================================================================== */

:root {
  /* Cores principais da marca */
  --marsala: #460112;
  --vinho: #52021a;
  --marsala-deep: #2e0009;
  --gold: #c9a45c;
  --gold-light: #e2c688;
  --white: #ffffff;
  --cream: #faf6f1;
  --dark: #160005;
  --ink: #2a1013;
  --text-muted: #6f5a5c;

  /* Tipografia */
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-h1: clamp(2.4rem, 6vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 4.2vw, 3rem);
  --fs-h3: clamp(1.3rem, 2.4vw, 1.7rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Espaçamentos */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 5.5rem;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  /* Sombras */
  --shadow-soft: 0 20px 60px -25px rgba(22, 0, 5, 0.35);
  --shadow-card: 0 12px 40px -20px rgba(22, 0, 5, 0.25);
  --shadow-gold-glow: 0 0 0 1px rgba(201, 164, 92, 0.35), 0 20px 50px -20px rgba(201, 164, 92, 0.3);

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s;
  --t-med: 0.5s;
  --t-slow: 0.9s;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

[hidden] { display: none !important; }

body, h1, h2, h3, h4, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--marsala-deep);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { color: var(--text-muted); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--marsala);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  text-align: center;
  max-width: 100%;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--marsala);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--marsala-deep); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--marsala-deep);
  box-shadow: var(--shadow-gold-glow);
}
.btn-gold:hover { filter: brightness(1.06); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); }

.btn-outline {
  background: transparent;
  color: var(--marsala);
  border: 1px solid var(--marsala);
}
.btn-outline:hover { background: var(--marsala); color: var(--white); }

.btn-nav-cta {
  background: var(--marsala);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--t-fast) var(--ease);
}
.btn-nav-cta:hover { background: var(--marsala-deep); }

.btn-lg { padding: 1.15rem 2.6rem; font-size: 1.05rem; }

/* ==========================================================================
   TÍTULOS DE SEÇÃO
   ========================================================================== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}
.eyebrow--gold { color: var(--gold); }

.section-head {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.section-head--light .eyebrow,
.section-head--light h2 { color: var(--gold-light); }
.section-head--light h2 { color: var(--white); }
.section-head--light .section-lead { color: rgba(255, 255, 255, 0.78); }

.section-lead {
  font-size: var(--fs-lead);
  margin-top: var(--space-sm);
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
/* Por padrão (sem JavaScript), todo o conteúdo fica visível — o efeito de
   "revelar ao rolar" só é ativado depois que o script confirma que o
   JavaScript está funcionando (classe .has-js no <html>). Isso garante que
   nada fique escondido caso o JS falhe, esteja desativado, ou para
   leitores de tela e mecanismos de busca. */
.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.1rem 0;
  transition: background var(--t-med) var(--ease), padding var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  box-shadow: 0 6px 30px -20px rgba(22, 0, 5, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(22,0,5,0.25);
}

.main-nav { display: flex; align-items: center; gap: var(--space-lg); }
.main-nav ul { display: flex; gap: var(--space-md); }
.main-nav a:not(.btn-nav-cta) {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--marsala-deep);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a:not(.btn-nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.main-nav a:not(.btn-nav-cta):hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 22px;
  justify-content: center;
  z-index: 210;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--marsala-deep);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 0, 5, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
  z-index: 150;
}
.nav-overlay.is-active { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding-bottom: var(--space-xl);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(201,164,92,0.26), transparent 60%),
    linear-gradient(160deg, var(--marsala) 0%, var(--marsala-deep) 65%, var(--dark) 100%);
  box-shadow: inset 0 -120px 140px -50px rgba(0,0,0,0.65);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8.5rem;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title {
  color: var(--white);
  margin-bottom: var(--space-md);
}
.hero-title em { color: var(--gold-light); font-style: italic; }

.hero-photo-wrap {
  position: relative;
  width: min(70vw, 280px);
  margin-bottom: var(--space-md);
}
.hero-photo-glow {
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.42), transparent 70%);
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,164,92,0.5);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.55);
}

.hero-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin-bottom: var(--space-md);
}
.hero-intro strong { color: var(--gold-light); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.scroll-cue {
  margin-top: var(--space-lg);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue span {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--gold-light);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue span::after { animation: none; } }

/* ==========================================================================
   O QUE É CURA DA ALMA
   ========================================================================== */
.cura-alma {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.cura-alma::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -8%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cura-alma-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cura-alma-inner h2 { margin-bottom: var(--space-md); }
.cura-alma-inner p { margin-bottom: var(--space-sm); font-size: var(--fs-lead); }
.cura-alma-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   ÁREA MARSALA — AUTORIDADE + SEMINÁRIO
   Um único fundo contínuo (gradiente multi-stop) pintado no container pai
   ".marsala-zone". As seções filhas não têm background próprio, então não
   existe nenhuma emenda entre elas — é literalmente a mesma imagem de
   fundo se estendendo por toda a área.
   ========================================================================== */
.marsala-zone {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--marsala) 0%,
    var(--vinho) 30%,
    var(--marsala) 62%,
    var(--marsala-deep) 100%
  );
}
.authority {
  background: transparent;
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}
.authority::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.26), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.authority::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 70px 100px -35px rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 0;
}
.authority .container { position: relative; z-index: 1; }
.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: var(--space-xl);
  align-items: center;
}
.authority-text-col { text-align: left; }
.authority-number {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 6rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.authority-text {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  max-width: 480px;
  margin-bottom: var(--space-sm);
  color: var(--white);
  line-height: 1.4;
}
.authority-caption {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.authority-video-col { display: flex; justify-content: center; }
.authority-video-col .video-card { max-width: 320px; width: 100%; }

/* ==========================================================================
   SOBRE
   ========================================================================== */
.about { padding: var(--space-2xl) 0; position: relative; overflow: hidden; background: var(--cream); }
.about::before {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 45%;
  height: 55%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: center;
}
.about-media {
  position: relative;
  max-width: 210px;
  margin: 0 auto;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 25%;
}
.about-frame {
  position: absolute;
  top: 14px; left: 14px;
  right: -14px; bottom: -14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-content h2 { margin-bottom: var(--space-md); }
.about-content p { margin-bottom: var(--space-sm); }
.about-highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--marsala-deep);
  margin: var(--space-md) 0;
}

/* ==========================================================================
   VÍDEO (card reutilizado na seção Autoridade + Vídeo)
   ========================================================================== */
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 55px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,164,92,0.25);
  background: var(--dark);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: var(--dark);
}

/* ==========================================================================
   SEMINÁRIO
   ========================================================================== */
.seminario {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-2xl);
}
.seminario::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 110px -35px rgba(0,0,0,0.65);
  pointer-events: none;
  z-index: 0;
}
.seminario-glow {
  position: absolute;
  top: 12%;
  right: 0;
  width: 55%;
  height: 60%;
  max-width: 100%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.22), transparent 72%);
  pointer-events: none;
}
.seminario .container { position: relative; z-index: 1; }

.seminario-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.detail-item {
  background: rgba(255,255,255,0.04);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.detail-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
}

.seminario-note {
  text-align: center;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.countdown-unit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,164,92,0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  min-width: 84px;
  text-align: center;
}
.countdown-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.countdown-message {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.temas-title {
  text-align: center;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.temas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: var(--space-lg);
}
.tema-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 25px -15px rgba(0,0,0,0.6);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.tema-card span {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.1rem;
}
.tema-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 16px 32px -14px rgba(0,0,0,0.7), 0 0 20px -4px rgba(201,164,92,0.35);
}
/* Com 10 temas em uma grade de 3 colunas, o último item fica sozinho na
   última linha — centraliza-o sob a coluna do meio. */
@media (min-width: 961px) {
  .tema-card:last-child { grid-column: 2; }
}

/* ==========================================================================
   TEMAS — STICKY STACKING CARDS (somente na seção Seminário)
   Cada cartão gruda no topo enquanto o próximo sobe por cima, formando uma
   pilha. Efeito isolado por ".temas-stack" — não afeta nenhuma outra grade
   do site.
   ========================================================================== */
.temas-grid.temas-stack {
  display: block;
  padding-top: 0.25rem;
}
.temas-stack .tema-card {
  position: sticky;
  top: calc(96px + var(--i, 0) * 14px);
  z-index: calc(var(--i, 0) + 1);
  min-height: 108px;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  padding: 1.15rem 1.4rem;
  background: linear-gradient(160deg, var(--marsala-deep) 0%, var(--vinho) 100%);
  border: 1px solid rgba(201,164,92,0.3);
  box-shadow: 0 18px 34px -16px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: visibility 0s linear 0.25s, transform 0.25s var(--ease);
}
.temas-stack .tema-card span {
  font-size: 1.6rem;
}
.temas-stack .tema-card:last-child { margin-bottom: 0; }
.temas-stack .tema-card:hover { transform: none; border-color: rgba(201,164,92,0.3); background: linear-gradient(160deg, var(--marsala-deep) 0%, var(--vinho) 100%); }
/* Uma vez coberto por dois cartões seguintes, o cartão desliza um pouco e
   some (JS alterna esta classe) em vez de se acumular como várias faixas
   finas no topo. Só transform + visibility — nunca opacity ou blur. */
.temas-stack .tema-card.is-covered {
  transform: translateY(-18px);
  visibility: hidden;
  transition: visibility 0s linear 0.25s, transform 0.25s var(--ease);
}
.tema-stack-sentinel { height: 0; margin: 0; padding: 0; border: 0; }
@media (max-width: 720px) {
  .temas-stack .tema-card {
    top: calc(78px + var(--i, 0) * 10px);
    min-height: 84px;
    margin-bottom: 0.85rem;
    padding: 0.95rem 1.1rem;
    font-size: 0.95rem;
  }
  .temas-stack .tema-card span {
    font-size: 1.3rem;
  }
}

.seminario-cta { text-align: center; }

/* ==========================================================================
   MENTORIAS
   ========================================================================== */
.mentorias { padding: var(--space-2xl) 0; position: relative; overflow: hidden; background: var(--cream); }
.mentorias::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 45%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.mentorias .container { position: relative; z-index: 1; }
.mentoria-block { margin-bottom: var(--space-2xl); }
.mentoria-block:last-child { margin-bottom: 0; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(70,1,18,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -18px rgba(22,0,5,0.35), inset 0 1px 0 rgba(255,255,255,0.9);
}
.pricing-card--highlight { border: 1px solid var(--gold); }
.pricing-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--marsala-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
}
.pricing-name { font-weight: 700; color: var(--marsala-deep); margin-bottom: 0.4rem; }
.pricing-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--marsala);
  margin-bottom: 0.4rem;
}
.pricing-desc { font-size: 0.88rem; margin-bottom: var(--space-md); }

.mentoria-block--coletiva {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  box-shadow: var(--shadow-card);
}
.coletiva-list {
  max-width: 480px;
  margin: 0 auto var(--space-md);
}
.coletiva-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(70,1,18,0.08);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.coletiva-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.coletiva-cta { text-align: center; }

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.depoimentos { padding: var(--space-2xl) 0; background: var(--white); position: relative; overflow: hidden; }
.depoimentos::before {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.depoimentos .container { position: relative; z-index: 1; }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  max-width: 760px;
  margin: 0 auto;
}
.depoimento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 40px -18px rgba(22,0,5,0.4), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -18px rgba(22,0,5,0.5), inset 0 1px 0 rgba(255,255,255,0.6), 0 0 24px -6px rgba(201,164,92,0.4);
}
.depoimento-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-med) var(--ease); }
.depoimento-card:hover img { transform: scale(1.05); }
.depoimento-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(22,0,5,0.75), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 1.2rem 0.75rem 0.6rem;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22,0,5,0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  width: 44px; height: 44px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.faq::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 35%;
  height: 45%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.faq .container { position: relative; z-index: 1; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(70,1,18,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--marsala-deep);
}
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform var(--t-fast) var(--ease);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease);
}
.faq-answer p { padding-bottom: 1.4rem; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--marsala) 0%, var(--vinho) 45%, var(--marsala-deep) 100%);
  color: var(--white);
  padding: var(--space-2xl) 0;
  text-align: center;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 90%;
  background: radial-gradient(circle closest-side, rgba(201,164,92,0.26), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 110px -35px rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 0;
}
.cta-final-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-final h2 { color: var(--white); margin-bottom: var(--space-sm); }
.cta-final-text { color: rgba(255,255,255,0.8); margin-bottom: var(--space-md); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; background: linear-gradient(to bottom, var(--marsala-deep) 0%, transparent 170px), var(--dark); color: rgba(255,255,255,0.7); padding: var(--space-xl) 0 var(--space-md); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-md);
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; }
.footer-brand p { color: var(--white); font-weight: 600; margin: 0; }
.footer-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact { display: flex; gap: 1.25rem; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold-light); }

.privacy-modal {
  position: fixed;
  inset: 0;
  background: rgba(22,0,5,0.7);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.privacy-modal-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 520px;
  position: relative;
}
.privacy-modal-inner h3 { margin-bottom: var(--space-sm); }
.privacy-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 1.6rem;
  color: var(--marsala);
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: var(--marsala);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-glow);
  z-index: 300;
  animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { background: var(--marsala-deep); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,164,92,0.4), var(--shadow-gold-glow); }
  50% { box-shadow: 0 0 0 10px rgba(201,164,92,0), var(--shadow-gold-glow); }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* Tablet */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .about-media { max-width: 220px; margin: 0 auto; }
  .authority-grid { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .authority-text-col { text-align: center; }
  .authority-text { margin-left: auto; margin-right: auto; }
  .authority-video-col .video-card { max-width: 280px; }
  .depoimentos-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .temas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile */
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(78vw, 340px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2rem;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    z-index: 200;
    box-shadow: -20px 0 60px -30px rgba(22,0,5,0.4);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: var(--space-md); }
  .main-nav a:not(.btn-nav-cta) { font-size: 1.1rem; }
  .btn-nav-cta { width: 100%; text-align: center; }
  .hamburger { display: flex; }

  .hero-content { padding-top: 7rem; padding-bottom: var(--space-xl); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .about-grid { gap: var(--space-lg); }

  .video-card video { aspect-ratio: 9/14; }

  .seminario-details { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .temas-grid { grid-template-columns: minmax(0, 1fr); }
  .countdown { gap: 0.6rem; }
  .countdown-unit { min-width: 68px; padding: 0.8rem 0.7rem; }
  .countdown-number { font-size: 1.5rem; }

  .pricing-cards { grid-template-columns: minmax(0, 1fr); max-width: 380px; }

  .depoimentos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 420px;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .whatsapp-float { width: 56px; height: 56px; bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 420px) {
  .depoimentos-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 340px; gap: 0.5rem; }
  .seminario-details { grid-template-columns: minmax(0, 1fr); }
}
