/* ============================================================
   LISI VIEZZER — INSTANTE PERFEITO
   Stylesheet principal
   ============================================================ */

/* ─── TOKENS ─── */
:root {
  --gold:       #c9a96e;
  --gold-light: #e0c898;
  --gold-dim:   rgba(201, 169, 110, 0.15);
  --dark:       #0a0a0a;
  --dark-2:     #111111;
  --dark-3:     #1a1a1a;
  --dark-4:     #222222;
  --text:       #e8e2d9;
  --text-muted: #8a8480;
  --text-dim:   #5a5550;
  --white:      #f5f0eb;
  --radius:     4px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar        { width: 3px; }
::-webkit-scrollbar-track  { background: var(--dark); }
::-webkit-scrollbar-thumb  { background: var(--gold); }

/* ─── PROGRESS BAR ─── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: all 0.4s ease;
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-cta {
  font-size: 0.72rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark) !important;
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

/* ─── HAMBURGER (mobile) ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 120;  /* sempre acima do overlay mobile */
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.nav-mobile {
  display: flex;           /* sempre flex — visibilidade via opacity/visibility */
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  z-index: 115; /* acima do conteúdo, abaixo do hamburger (120) */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-mobile a:hover    { color: var(--gold); }
.nav-mobile .nav-cta   {
  font-family: 'DM Sans', sans-serif !important;
  font-style: normal;
  font-size: 0.78rem !important;
  padding: 14px 36px !important;
  color: var(--dark) !important;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 60px; /* compensa a nav fixa — reduzido */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% 50%, rgba(201, 169, 110, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* ── Grid de duas colunas ── */
.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  height: 100%;
}

/* ── Coluna esquerda: texto ── */
.hero-content {
  text-align: left;
}

.hero-course-name {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  display: block;
}

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
  max-width: 520px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-desc-em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  display: inline;
}

/* ── Quebras de linha por dispositivo ──
   br-narrow : desktop (col. 50%) + mobile
   br-tablet : tablet (561-900px, col. 100%)
   br-main   : sempre (quebra antes do trecho dourado) */
.br-narrow { display: block; }
.br-tablet { display: none;  }
.br-main   { display: block; }

.hero-subdesc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
  display: inline-block;
}

.hero-author {
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.05s forwards;
}

.hero-author strong {
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Coluna direita: foto ── */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.5s forwards;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: calc(100dvh - 120px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 16px;
  margin-left: auto;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Brilho dourado atrás da foto */
.hero-photo-glow {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

/* Buttons */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 44px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::after { opacity: 0.1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.btn-ghost {
  color: var(--text-muted);
  padding: 16px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: all 0.3s;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* hero-scroll removido conforme solicitado */

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 0 40px;
  flex-shrink: 0;
}

.ticker-item.highlight { color: var(--gold); }

.ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
section { padding: 80px 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

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

.section-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 32px;
}

/* ============================================================
   STATS
   ============================================================ */
#stats {
  background: var(--dark-2);
  padding: 80px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(201, 169, 110, 0.08);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   O CURSO (#what)
   ============================================================ */
#what { background: var(--dark); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-visual { position: relative; }

/* ── Grid de 6 thumbs ── */
.course-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}

.course-thumb {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.10);
  border-radius: 4px;
  background: var(--dark-3);
  width: 100%;
  aspect-ratio: 4 / 5;
}

.course-thumb:hover { border-color: rgba(201, 169, 110, 0.4); }

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(15%);
}

.course-thumb:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}



/* ── CTA abaixo dos pilares ── */
.what-cta-wrap {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 48px 0 12px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.what-cta-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  font-weight: 300;
  line-height: 1.4;
}



.what-text p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.what-text p strong {
  color: var(--gold);
  font-weight: 400;
}

.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.08);
  padding: 24px;
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}

.pillar-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--gold);
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PARA QUEM (#forwho)
   ============================================================ */
#forwho {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

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

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

.forwho-card {
  background: var(--dark-3);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.forwho-card:hover { background: var(--dark-4); }

.forwho-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.forwho-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.06);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}

.forwho-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
  opacity: 0.8;
}

.forwho-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.forwho-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CURRÍCULO (#curriculum)
   ============================================================ */
#curriculum { background: var(--dark); }

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

.modules-list {
  max-width: 820px;
  margin: 0 auto;
}

.module-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.module-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  color: var(--text);
}

.module-toggle:hover .module-title { color: var(--gold); }

.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 36px;
  opacity: 0.7;
}

.module-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  transition: color 0.3s;
  flex: 1;
}

.module-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  white-space: nowrap;
}

.module-arrow {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform 0.3s;
  opacity: 0.6;
  flex-shrink: 0;
}

.module-item.open .module-arrow { transform: rotate(180deg); }

.module-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.module-item.open .module-content { max-height: 400px; }

.module-lessons {
  padding: 0 0 28px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.module-lesson {
  font-size: 0.97rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Marcador estilizado: diafragma/abertura fotográfica */
.module-lesson::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(201,169,110,0.25);
  opacity: 0.8;
  flex-shrink: 0;
}

/* ============================================================
   CTA PÓS-CONTEÚDO (.mid-cta)
   ============================================================ */
.mid-cta {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  padding: 64px 0;
}

.mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.mid-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.4;
}

/* ============================================================
   PORTFÓLIO (#portfolio)
   ============================================================ */
#portfolio {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  overflow: hidden;
}

.portfolio-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.portfolio-track-wrap { overflow: hidden; }

.portfolio-track {
  display: flex;
  gap: 16px;
  animation: portfolioScroll 22s linear infinite;
  width: max-content;
}

.portfolio-track:hover { animation-play-state: paused; }

.portfolio-item {
  width: 320px;
  height: 420px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.portfolio-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* ============================================================
   SOBRE (#about)
   ============================================================ */
#about {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--dark-3);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.about-text { padding-top: 20px; }

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 36px;
}

.about-bio p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-bio p strong {
  color: var(--text);
  font-weight: 400;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 6px 14px;
  border-radius: 2px;
}

.about-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.about-instagram:hover { color: var(--gold); }

/* ============================================================
   DEPOIMENTOS (#testimonials) — CARoussel PÓDIO
   ============================================================ */
#testimonials {
  background: var(--dark);
  overflow-x: hidden; /* evita scroll horizontal sem cortar verticalmente */
}

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

/* Wrapper do carrossel */
.podium-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  position: relative;
}

/* Palco dos cards */
.podium-stage {
  flex: 1;
  display: flex;
  align-items: stretch;   /* todos com mesma altura */
  justify-content: center;
  gap: 16px;
  overflow: visible;      /* não trunca os cards laterais */
  min-height: 340px;
  position: relative;
}

/* Card base */
.podium-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex: 1;               /* distribui o espaço igualmente */
  max-width: 340px;      /* mas não cresce demais */
  min-width: 0;          /* permite encolher no flex */
  transition:
    transform    0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity      0.45s ease,
    border-color 0.3s;
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Card ATIVO (centro / destaque) */
.podium-card.is-active {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-10px);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 28px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,169,110,0.07);
  flex: 1.2; /* destaque ocupa um pouco mais de espaço */
}

/* Cards LATERAIS — visiveis e legíveis */
.podium-card.is-side {
  opacity: 0.65;
  filter: none;           /* sem blur para poder ler */
  transform: translateY(0px);
  z-index: 1;
  pointer-events: none;
  border-color: rgba(201, 169, 110, 0.04);
}

/* Ocultos (fila de espera) */
.podium-card.is-hidden {
  display: none;
}

/* Estrelas */
.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* Texto do depoimento */
.podium-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.podium-card.is-side blockquote {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Autor */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 400;
}

.author-sub { font-size: 0.72rem; color: var(--text-dim); }

/* Setas de navegação */
.podium-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: var(--dark-2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
}

.podium-arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* Dots indicadores */
.podium-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.podium-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.podium-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── Cards de imagem (depoimentos em print) ── */
.podium-card--img {
  padding: 12px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.podium-img-wrap {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}

.podium-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.podium-card--img.is-active .podium-img-wrap img {
  transform: scale(1.01);
}

/* Em mobile, altura menor para caber melhor */
@media (max-width: 600px) {
  .podium-img-wrap {
    height: 280px;
  }
  .podium-card--img {
    min-height: 300px;
  }
}

/* ============================================================
   PREÇOS (#pricing)
   ============================================================ */
#pricing {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

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

.pricing-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent);
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-bottom: 40px;
}

.pricing-from {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.pricing-from s {
  opacity: 0.6;
  text-decoration: line-through;
}

/* Preço principal grande */
.pricing-main-price {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.pricing-value {
  font-size: 5.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.pricing-main-price > :not(.pricing-value) {
  font-size: 2rem;
  color: var(--white);
}

.pricing-cents {
  font-size: 2rem;
  color: var(--white);
  align-self: flex-end;
  margin-bottom: 8px;
}

.pricing-full {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-full strong { color: var(--gold); }

.pricing-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 110, 0.1);
  margin: 32px 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Ícone check circulado dourado */
.feat-check {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.feat-check--shield {
  width: 18px;
  height: 18px;
}

/* Item de garantia dentro da lista de features */
.pricing-feature-guarantee {
  color: var(--gold) !important;
  font-size: 0.85rem !important;
  font-weight: 500;
  border-top: 1px solid rgba(201, 169, 110, 0.15) !important;
  margin-top: 8px;
  padding-top: 14px !important;
  gap: 10px !important;
}

.pricing-feature-guarantee::before {
  display: none !important;
}

.pricing-feature-guarantee svg {
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
}

.pricing-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.2);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  justify-content: center;
}

.pricing-guarantee svg { color: var(--gold); opacity: 0.7; }

.payment-wrap {
  margin-top: 28px;
  text-align: center;
}

.payment-img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0.8;
}

.payment-secure {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 10px;
}



/* ============================================================
   FAQ (#faq)
   ============================================================ */
#faq {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.06);
}

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

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.faq-q-text {
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.4;
}

.faq-icon {
  width: 18px; height: 18px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  opacity: 0.6;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-answer-inner {
  padding: 0 0 24px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding: 60px 0 40px;
}

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-copy { font-size: 0.72rem; color: var(--text-dim); }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVO — max-width: 900px (mobile geral)
   ============================================================ */
@media (max-width: 900px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }

  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile    { display: flex; }

  .container    { padding: 0 24px; }
  section       { padding: 80px 0; }

  .what-grid,
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }

  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .forwho-grid  { grid-template-columns: 1fr; gap: 2px; }
  .module-lessons { grid-template-columns: 1fr; padding-left: 36px; }
  .pillars-row  { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { padding: 36px 28px; }
  .portfolio-item { width: 260px; height: 340px; }

  /* ── HERO MOBILE ── */
  #hero {
    height: auto;
    min-height: 100svh;
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding: 24px 20px 48px;
    gap: 24px;
    text-align: center;
    height: auto;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-course-name { margin-bottom: 12px; }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 12px;
  }

  /* tablet: coluna full-width → linhas mais longas */
  .hero-desc {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .hero-subdesc {
    font-size: 1.0rem;
    max-width: 100%;
  }

  /* Tablet: br-narrow off, br-tablet on */
  .br-narrow { display: none;  }
  .br-tablet { display: block; }

  .hero-cta {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 16px 20px;
  }

  .hero-author { margin-top: 12px; }

  .hero-photo {
    order: 1;
    justify-content: center;
  }

  .hero-photo-frame {
    max-width: 200px;
    margin: 0 auto;
  }

  /* ── TICKER MOBILE ── */
  .ticker-wrap { overflow: hidden; }
  .ticker-item { font-size: 0.82rem; padding: 0 20px; }

  /* ── STATS MOBILE ── */
  .stat-item { padding: 28px 12px; }
  .stat-number { font-size: 2.6rem; }

  /* ── O CURSO MOBILE ── */
  .course-thumb-grid { max-width: 320px; margin: 0 auto; }
  .what-cta-wrap { margin-top: 36px; padding: 36px 0 8px; }

  /* ── PARA QUEM MOBILE ── */
  .forwho-card { padding: 36px 24px; }

  /* ── PORTFÓLIO MOBILE ── */
  .portfolio-item { width: 220px; height: 290px; }

  /* ── SOBRE MOBILE ── */
  .about-img-stack { display: flex; justify-content: center; }
  .about-img-main  { max-width: 260px; margin: 0 auto; aspect-ratio: 3/4; }
  .about-text      { padding-top: 0; }
  .about-quote     { font-size: 1.25rem; }

  /* ── DEPOIMENTOS MOBILE ── */
  .podium-carousel { gap: 8px; }
  .podium-card.is-side { display: none; }
  .podium-card.is-active { flex: 1; max-width: 100%; transform: none; }
  .podium-stage { min-height: auto; gap: 0; }
  .podium-arrow { width: 36px; height: 36px; flex-shrink: 0; }

  /* ── CTA FINAL MOBILE ── */
  .mid-cta { padding: 48px 0; }
  .mid-cta-text { font-size: 1.25rem; padding: 0 20px; }
  .mid-cta-inner .btn-primary {
    display: block;
    width: calc(100% - 48px);
    text-align: center;
    margin: 0 auto;
  }
}

/* ============================================================
   TABLET: layout side-by-side preservado (561px – 900px)
   ============================================================ */
@media (min-width: 561px) and (max-width: 900px) {

  /* ── HERO ── */
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
    padding: 24px 24px 48px;
    height: auto;
  }

  .hero-content { text-align: left; order: 1; }
  .hero-photo   { order: 2; justify-content: flex-end; }

  .hero-photo-frame {
    max-width: 260px;
    margin: 0 0 0 auto;
  }

  .hero-cta {
    display: inline-block;
    width: auto;
    text-align: left;
    padding: 16px 36px;
  }

  .hero-subdesc { max-width: 100%; }

  /* ── O CURSO ── */
  .what-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* ── SOBRE ── */
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }

  .about-img-stack { display: block; }
  .about-img-main  { max-width: 100%; aspect-ratio: 2/3; }
  .about-text      { padding-top: 20px; }
}

@media (max-width: 560px) {
  .hero-photo-frame { max-width: 160px; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .pillars-row { grid-template-columns: 1fr; }

  /* Mobile: mesmas quebras que desktop (coluna estreita) */
  .hero-desc {
    font-size: 1.45rem;
    line-height: 1.3;
  }
  .br-narrow { display: block; }
  .br-tablet { display: none;  }
}

/* ─── WHATSAPP FAB ─── */
@keyframes wpp-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes wpp-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

#whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  /* pill shape — collapsed by default */
  padding: 0 18px 0 14px;
  height: 52px;
  max-width: 52px;
  overflow: hidden;

  background: #111;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 169, 110, 0.08);
  color: var(--gold);
  text-decoration: none;

  cursor: pointer;
  transition:
    max-width 380ms cubic-bezier(0.34, 1.56, 0.64, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;

  animation: wpp-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

/* pulse ring */
#whatsapp-fab .whatsapp-fab__ring {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: wpp-pulse 2.8s ease-out 2.5s infinite;
  pointer-events: none;
}

/* icon */
#whatsapp-fab .whatsapp-fab__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 220ms ease, color 220ms ease;
}

/* label — hidden until hover */
#whatsapp-fab .whatsapp-fab__label {
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 200ms ease 80ms;
  color: var(--text);
}

/* ── hover / focus state ── */
#whatsapp-fab:hover,
#whatsapp-fab:focus-visible {
  max-width: 220px;
  background: #1a1a0e;
  border-color: rgba(201, 169, 110, 0.65);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 169, 110, 0.2);
  outline: none;
}

#whatsapp-fab:hover .whatsapp-fab__label,
#whatsapp-fab:focus-visible .whatsapp-fab__label {
  opacity: 1;
}

#whatsapp-fab:hover .whatsapp-fab__icon,
#whatsapp-fab:focus-visible .whatsapp-fab__icon {
  transform: scale(1.12);
  color: var(--gold-light);
}

/* ── mobile tweak ── */
@media (max-width: 600px) {
  #whatsapp-fab {
    bottom: 20px;
    right: 16px;
    height: 48px;
    max-width: 48px;
    padding: 0 14px 0 12px;
  }

  #whatsapp-fab:hover,
  #whatsapp-fab:focus-visible {
    max-width: 200px;
  }
}
