/* ==========================================================================
   MENTE E CORPO 02 — sistema visual
   Direção: Gold Luxury Editorial. Landing escura (#0A0A0A), área de membros
   clara (#FAF7F2). Acentos em ouro (#D4AF37). Tipografia editorial
   (Fraunces) com grotesco de leitura (Plus Jakarta Sans). Luz, ar, filetes.
   ========================================================================== */

:root {
  /* superfícies — fundo preto luxo (landing + auth) */
  --paper:      #0A0A0A;
  --paper-2:    #111111;
  --paper-3:    #1A1A1A;
  --card:       #141414;
  --line:       rgba(212, 175, 55, 0.18);
  --line-soft:  rgba(212, 175, 55, 0.10);

  /* tinta — claro sobre escuro */
  --ink:        #F0E6D0;
  --muted:      rgba(240, 230, 208, 0.75);
  --faint:      rgba(240, 230, 208, 0.45);

  /* acentos — ouro puro */
  --iris:       #D4AF37;
  --iris-soft:  rgba(212, 175, 55, 0.12);
  --orchid:     #E9C77D;
  --gold:       #D4AF37;
  --gold-soft:  rgba(212, 175, 55, 0.15);
  --rose:       #C49B2A;

  /* tipografia */
  --display: "Fraunces", "Georgia", "Times New Roman", serif;
  --body:    "Plus Jakarta Sans", "Mulish", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* medidas */
  --shell:  1200px;
  --narrow: 780px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 26px;

  --shadow-sm: 0 2px 10px -4px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 18px 40px -26px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 40px 80px -50px rgba(0, 0, 0, 0.7);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.028;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

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

a { color: var(--iris); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  margin: 0 0 0.4em;
  color: var(--ink);
}

p { margin: 0 0 1em; }

::selection { background: var(--gold); color: #0A0A0A; }

.shell { width: min(var(--shell), 100% - 48px); margin-inline: auto; }
.narrow { width: min(var(--narrow), 100% - 48px); margin-inline: auto; }

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 18px;
}

.lede { font-size: 20px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s,
    border-color 0.3s, box-shadow 0.3s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(120deg, #D4AF37, #E9C77D 60%, #D4AF37);
  color: #0A0A0A;
  box-shadow: 0 16px 34px -18px rgba(212, 175, 55, 0.55);
}
.btn-primary:hover { color: #FFFFFF; transform: translateY(-2px); }

.btn-ghost {
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold);
  background: transparent;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  background: linear-gradient(120deg, #D4AF37, #E8CB6A);
  color: #0A0A0A;
  box-shadow: 0 16px 34px -20px rgba(212, 175, 55, 0.7);
}
.btn-gold:hover { color: #3A2A12; transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 11.5px; }

/* --------------------------------------------------------------------------
   Navegação (landing)
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px -28px rgba(212, 175, 55, 0.15);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brandmark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brandmark span {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
}
.brandmark:hover { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links a:hover { color: var(--ink); }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 24px; cursor: pointer; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(70% 55% at 78% 8%, rgba(212, 175, 55, 0.08), transparent 62%),
    radial-gradient(60% 50% at 8% 92%, rgba(212, 175, 55, 0.06), transparent 66%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero::before {
  width: 560px; height: 560px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 68%);
}
.hero::after {
  width: 480px; height: 480px;
  bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero h1 { font-size: clamp(46px, 7.4vw, 98px); margin: 0 0 26px; }
.hero h1 em { font-style: italic; color: var(--iris); }

.hero h1 .destaque {
  position: relative;
  display: inline-block;
  color: var(--ink);
  padding: 0 0.12em;
  z-index: 0;
}
.hero h1 .destaque::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.46em;
  background: linear-gradient(100deg, rgba(212, 175, 55, 0.42), rgba(212, 175, 55, 0.62));
  transform: rotate(-0.7deg);
  border-radius: 3px;
  animation: pinta 1.1s var(--ease) 0.7s both;
}
@keyframes pinta { from { transform: rotate(-0.7deg) scaleX(0); transform-origin: left; } to { transform: rotate(-0.7deg) scaleX(1); transform-origin: left; } }
@media (prefers-reduced-motion: reduce) { .hero h1 .destaque::before { animation: none; } }

.hero-sub { font-size: 19px; color: var(--muted); max-width: 46ch; margin-bottom: 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-tags {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0;
}

.pillars-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}
.pillars-inline .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* retrato / placa editorial */
.portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 470px;
  margin-left: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(212, 175, 55, 0.22), transparent 62%),
    linear-gradient(160deg, var(--paper-3), var(--card) 72%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.portrait-monogram {
  font-family: var(--display);
  font-size: clamp(90px, 14vw, 168px);
  line-height: 1;
  color: rgba(212, 175, 55, 0.08);
  -webkit-text-stroke: 1.2px rgba(212, 175, 55, 0.15);
}
.portrait-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 74px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats .n { font-family: var(--display); font-size: 40px; color: var(--ink); line-height: 1; }
.hero-stats .l { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }

/* --------------------------------------------------------------------------
   Faixa rolante
   -------------------------------------------------------------------------- */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.16));
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 46px; animation: slide 28s linear infinite; }
.marquee span {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.marquee span i { color: var(--gold); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Seções
   -------------------------------------------------------------------------- */
section { position: relative; }
.sec { padding: 90px 0; }
.sec + .sec { border-top: 1px solid var(--line-soft); }
.sec-head { max-width: 700px; margin-bottom: 58px; }
.sec-head h2 { font-size: clamp(31px, 4.3vw, 55px); }
.sec-head p { color: var(--muted); font-size: 18px; }

/* seção identificação */
.identify-body {
  max-width: 720px;
}
.identify-items p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 16px;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}
.identify-cta {
  margin-top: 34px;
  font-size: 20px;
  color: var(--ink);
}
.identify-cta strong {
  color: var(--gold);
}

/* jornada / processo */
.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.journey-step {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.journey-step:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
}
.journey-step .when {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.journey-step h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.journey-step p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* manifesto */
.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(80% 60% at 0% 50%, rgba(212, 175, 55, 0.08), transparent 70%),
    linear-gradient(180deg, var(--paper-2), var(--paper) 80%);
}
.manifesto-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; }
.manifesto-grid > div:first-child {
  border-left: 3px solid var(--gold);
  padding-left: 32px;
}
.manifesto blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.9vw, 36px);
  line-height: 1.28;
  color: var(--ink);
}
.manifesto blockquote em { font-style: italic; color: var(--iris); }
.manifesto-sig { margin-top: 26px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }

/* pilares */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  position: relative;
  padding: 42px 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% -40%;
  height: 200px;
  background: radial-gradient(closest-side, rgba(212, 175, 55, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.pillar:hover::before { opacity: 1; }
.pillar h3 { font-size: 30px; margin-bottom: 6px; }
.pillar .lead { color: var(--gold); font-size: 14px; letter-spacing: 0.04em; margin-bottom: 14px; }
.pillar p { color: var(--muted); font-size: 15.5px; margin: 0; }
.pillar-cta {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(212,175,55,0.08), var(--card) 60%);
  border-color: rgba(212,175,55,0.25);
}
.pillar-cta h3 { color: var(--gold); }

/* para quem é / não é */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.audience-card {
  padding: 38px 34px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.audience-card.yes { background: linear-gradient(160deg, rgba(212, 175, 55, 0.06), var(--card) 70%); }
.audience-card.no  { background: linear-gradient(160deg, var(--paper-2), var(--card) 70%); }
.audience-card h3 { font-size: 26px; margin-bottom: 20px; }
.audience-card ul { list-style: none; margin: 0; padding: 0; }
.audience-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15.5px;
}
.audience-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  font-size: 18px;
}
.audience-card.yes li::before { content: "✦"; color: var(--iris); }
.audience-card.no  li::before { content: "—"; color: var(--faint); }

/* depoimentos */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote .mark { font-family: var(--display); font-size: 58px; line-height: 0.6; color: var(--iris); }
.quote p { font-family: var(--display); font-size: 21px; line-height: 1.36; margin: 18px 0 24px; }
.quote .who { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.quote .who b { display: block; color: var(--ink); letter-spacing: 0.1em; margin-bottom: 4px; }

/* bloco área de membros */
.members-teaser {
  border-radius: var(--r-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 64px 56px;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(212, 175, 55, 0.20), transparent 55%),
    radial-gradient(60% 80% at 0% 100%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(160deg, var(--paper-3), var(--card) 70%);
  box-shadow: 0 24px 60px -30px rgba(212, 175, 55, 0.2), var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}
.members-teaser h2 { font-size: clamp(32px, 4.4vw, 54px); }
.members-list { list-style: none; margin: 24px 0 0; padding: 0; }
.members-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 15.5px;
  display: flex;
  gap: 12px;
}
.members-list li b { color: var(--ink); font-weight: 700; }

.members-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.member-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s;
}
.member-feat:hover { border-color: var(--gold); }
.member-feat-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.member-feat b { display: block; color: var(--ink); font-size: .95rem; margin-bottom: 4px; }
.member-feat span { color: var(--muted); font-size: .88rem; line-height: 1.45; }
.key-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.key-card .k { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.key-card p { color: var(--muted); font-size: 14.5px; }
.key-card b { color: var(--ink); }

/* membros landing — cards grandes */
.membros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.membro-card {
  text-align: center;
  padding: 40px 26px 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.membro-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
}
.membro-card-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1;
}
.membro-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.membro-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}

/* faq */
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 22px 28px;
  margin-bottom: 12px;
  background: var(--card);
  transition: border-color 0.3s, background 0.3s;
}
.faq details[open] {
  border-color: rgba(212, 175, 55, 0.25);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.05), var(--card) 60%);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-family: var(--body); font-size: 24px; transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 14px 0 0; max-width: 74ch; }

/* cta final */
.cta-final {
  text-align: center;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, var(--paper-2));
  border-top: 1px solid var(--line-soft);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 55% at 50% 35%, rgba(212, 175, 55, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-final h2 { font-size: clamp(34px, 5.4vw, 72px); position: relative; color: var(--gold); }
.cta-final p { color: var(--muted); font-size: 19px; max-width: 56ch; margin: 0 auto 34px; position: relative; }

/* rodapé */
.footer { border-top: 1px solid var(--line-soft); padding: 54px 0 40px; background: var(--paper-2); }
.footer-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; align-items: flex-start; }
.footer small { color: var(--faint); font-size: 12.5px; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.footer-links a:hover { color: var(--iris); }

/* --------------------------------------------------------------------------
   Revelação no scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

.rise { opacity: 0; animation: rise 1s var(--ease) forwards; }
.rise-1 { animation-delay: 0.05s; }
.rise-2 { animation-delay: 0.18s; }
.rise-3 { animation-delay: 0.31s; }
.rise-4 { animation-delay: 0.44s; }
.rise-5 { animation-delay: 0.57s; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .rise, .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   ÁREA DE MEMBROS — layout sidebar
   ========================================================================== */
.app-body { background: var(--paper); margin: 0; }

/* --- Layout sidebar + main --- */
.app-layout { display: flex; min-height: 100vh; }

.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #111111;
  color: #C8C4BA;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  overflow-y: auto;
  transition: transform 0.35s var(--ease);
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-close { display: none; background: none; border: 0; color: #9A917E; font-size: 18px; cursor: pointer; }

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E8E4DA;
  text-decoration: none;
}
.sidebar-logo-img {
  height: 80px;
  width: auto;
}
.sidebar-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sidebar-nav { flex: 1; padding: 16px 0; }

.sidebar-section {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A8070;
  padding: 18px 20px 8px;
  font-weight: 700;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #9A917E;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.sidebar-link:hover { color: #E8E4DA; background: rgba(255,255,255,0.04); }
.sidebar-link.active {
  color: #D4AF37;
  background: rgba(212,175,55,0.08);
  border-left-color: #D4AF37;
}

.sidebar-link-module { padding-left: 24px; font-size: 13.5px; }
.sidebar-mod-icon {
  width: 22px; height: 22px;
  border-radius: 4px;
  display: grid; place-items: center;
  background: rgba(184,148,30,0.12);
  color: var(--gold);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.sidebar-link-logout { color: #8A8070; margin-top: 4px; }
.sidebar-link-logout:hover { color: #C49B2A; }

.sidebar-bottom {
  padding: 14px 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px 12px;
}
.sidebar-user-info b { display: block; color: #E8E4DA; font-size: 13.5px; }
.sidebar-user-info span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #8A8070; }

.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #D4AF37, #C49B2A);
  color: #0A0A0A;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.avatar-sm { width: 30px; height: 30px; font-size: 11px; }

/* --- Main content area --- */
.app-main {
  flex: 1;
  margin-left: 260px;
  min-width: 0;
}

.topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar-menu {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 18px;
  padding: 6px 10px;
  cursor: pointer;
}
.topbar-right { display: flex; align-items: center; gap: 12px; }

.app-main { display: flex; flex-direction: column; min-height: 100vh; }
.app-content { padding: 40px 44px 80px; flex: 1; }

.app-footer {
  padding: 24px 44px;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.app-footer a { color: var(--gold); text-decoration: none; }
.app-footer a:hover { text-decoration: underline; }

/* -- Trilhas / Leituras / Avisos -- */
.page-header { margin-bottom: 32px; }
.page-header h1 { font-size: clamp(26px, 3.5vw, 38px); margin: 0 0 6px; }
.page-header p { color: var(--muted); margin: 0; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.trail-card, .reading-card, .notice-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  transition: border-color .2s;
}
.trail-card:hover, .reading-card:hover { border-color: var(--gold); }

.trail-card h3, .reading-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.trail-card p, .reading-card p, .notice-card p { color: var(--muted); margin: 0; font-size: .92rem; line-height: 1.55; }
.trail-card .trail-count { font-size: .82rem; color: var(--gold); margin-top: 14px; }

.reading-card .reading-author { font-size: .82rem; color: var(--gold); margin-bottom: 8px; }
.reading-card .reading-actions { margin-top: 16px; }
.reading-card .reading-actions a {
  display: inline-block;
  padding: 7px 18px;
  background: var(--gold);
  color: var(--paper);
  border-radius: 6px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
}
.reading-card .reading-actions a:hover { opacity: .85; }

.notice-card { border-left: 3px solid var(--gold); }
.notice-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.notice-card .notice-date { font-size: .78rem; color: var(--muted); margin-top: 12px; }

.trail-audio-list { list-style: none; padding: 0; margin: 0; }
.trail-audio-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.trail-audio-item:last-child { border-bottom: none; }
.trail-audio-item.trail-audio-active { background: var(--gold-soft); border-radius: var(--r-sm); padding-left: 12px; padding-right: 12px; }
.trail-audio-num { font-size: .82rem; color: var(--muted); min-width: 28px; text-align: center; font-weight: 600; }
.trail-audio-info { flex: 1; }
.trail-audio-info h4 { margin: 0 0 4px; font-size: 1rem; }
.trail-audio-info p { margin: 0; font-size: .85rem; color: var(--muted); }
.trail-play-btn {
  background: var(--gold);
  color: var(--paper);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s var(--ease), background .2s;
}
.trail-play-btn:hover { transform: scale(1.1); background: var(--orchid); }
.trail-player-audio audio { filter: sepia(20%) saturate(70%) brightness(90%); }

.trail-player {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.trail-player iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty-state svg { opacity: .4; margin-bottom: 16px; }
.empty-state p { font-size: 1rem; }

.welcome { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.welcome h1 { font-size: clamp(31px, 4.4vw, 50px); margin: 0; }
.welcome p { color: var(--muted); margin: 8px 0 0; }

/* medidor de progresso */
.progress-card {
  min-width: 260px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 24px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.progress-card .top { display: flex; justify-content: space-between; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.bar { height: 6px; border-radius: 999px; background: rgba(212, 175, 55, 0.15); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--iris), #C8A063); }
.progress-card .n { font-family: var(--display); font-size: 30px; margin-top: 12px; }

/* continuar de onde parou */
.resume {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  border: 1px solid rgba(196, 154, 84, 0.5);
  border-radius: var(--r-md);
  background: linear-gradient(120deg, var(--gold-soft), var(--card) 62%);
  margin-bottom: 46px;
}
.resume .k { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.resume h3 { margin: 4px 0 0; font-size: 25px; }
.resume .sp { flex: 1; }

/* áudio diário */
.daily-audio-card {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--r-md);
  background: linear-gradient(120deg, var(--iris-soft), var(--card) 62%);
  margin-bottom: 34px;
  overflow: hidden;
}
.daily-audio-head {
  padding: 24px 28px;
}
.daily-audio-head .k { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--iris); font-weight: 700; margin-bottom: 8px; }
.daily-audio-head h3 { margin: 0 0 6px; font-size: 28px; }
.daily-audio-head p { color: var(--muted); margin: 0; }
.daily-audio-player { border-top: 1px solid var(--line-soft); }
.daily-audio-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* módulos */
.module { margin-bottom: 54px; }
.module-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.module-head .idx { font-family: var(--display); font-size: 15px; letter-spacing: 0.2em; color: var(--gold); }
.module-head h2 { font-size: 34px; margin: 6px 0 4px; }
.module-head p { color: var(--muted); margin: 0; font-size: 15px; max-width: 60ch; }
.module-meta { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); text-align: right; }

.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--card);
}
.tag-premium { border-color: rgba(155, 117, 57, 0.6); color: var(--gold); background: var(--gold-soft); }
.tag-done { border-color: rgba(212, 175, 55, 0.25); color: var(--iris); background: var(--iris-soft); }

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

.lesson-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.4s;
}
.lesson-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.lesson-thumb { position: relative; aspect-ratio: 16 / 9; background: var(--paper-3); overflow: hidden; }
.lesson-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.lesson-card:hover .lesson-thumb img { transform: scale(1.04); }
.play { position: absolute; inset: 0; display: grid; place-items: center; }
.play i {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(4px);
  font-style: normal;
  color: var(--ink);
  padding-left: 4px;
  box-shadow: var(--shadow-sm);
}
.lesson-body { padding: 18px 20px 22px; }
.lesson-body h4 { font-size: 21px; margin: 0 0 6px; }
.lesson-body p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.lesson-foot { display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }

.locked {
  opacity: 0.95;
  padding: 34px;
  text-align: center;
  border-radius: var(--r-md);
  border: 1px dashed var(--line);
  background: var(--paper-2);
  color: var(--muted);
}
.locked b { color: var(--gold); }

/* player da aula */
.player-wrap { display: grid; grid-template-columns: 1fr 330px; gap: 32px; align-items: start; }
.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-md);
}
.player iframe { width: 100%; height: 100%; border: 0; display: block; }

.lesson-title { font-size: clamp(26px, 3.6vw, 40px); margin: 26px 0 10px; }
.lesson-desc { color: var(--muted); max-width: 70ch; }

.side-list {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.side-list .h { padding: 16px 20px; border-bottom: 1px solid var(--line-soft); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.side-list a {
  display: flex;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14.5px;
}
.side-list a:last-child { border-bottom: 0; }
.side-list a:hover { background: var(--iris-soft); color: var(--ink); }
.side-list a.current { background: var(--iris-soft); color: var(--ink); font-weight: 600; }
.side-list a .n { color: var(--faint); font-family: var(--display); }

.notes textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  background: #1A1A1A;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
}
.notes textarea:focus { outline: none; border-color: var(--iris); }

.lesson-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 26px 0 34px; }

/* --------------------------------------------------------------------------
   Login / formulários
   -------------------------------------------------------------------------- */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.auth-art {
  position: relative;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(80% 60% at 20% 10%, rgba(212, 175, 55, 0.1), transparent 62%),
    linear-gradient(160deg, #111111, #0A0A0A 76%);
  border-right: 1px solid var(--line-soft);
  overflow: hidden;
}
.auth-art h2 { font-size: clamp(36px, 4.6vw, 62px); max-width: 14ch; }
.auth-art h2 em { font-style: italic; color: var(--iris); }
.auth-art p { color: var(--muted); max-width: 42ch; }
.auth-form { display: grid; place-items: center; padding: 60px 40px; background: #0A0A0A; }
.auth-card { width: min(420px, 100%); }
.auth-card h1 { font-size: 40px; margin-bottom: 6px; }
.auth-card > p { color: var(--muted); margin-bottom: 30px; }

label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 18px 0 8px;
  font-weight: 600;
}
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="url"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: #1A1A1A;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15.5px;
}
input::placeholder, textarea::placeholder { color: rgba(240, 230, 208, 0.3); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-soft);
}
input:disabled { background: #111111; color: var(--faint); }

.check { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.check input { width: auto; }
.check label { margin: 0; letter-spacing: 0.1em; }

.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 28px; flex-wrap: wrap; }
.auth-links { margin-top: 22px; font-size: 13.5px; color: var(--muted); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* avisos */
.flashes { margin: 0 0 24px; padding: 0; list-style: none; }
.flash {
  padding: 13px 18px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  background: var(--card);
}
.flash.success { border-color: rgba(212, 175, 55, 0.4); background: rgba(212, 175, 55, 0.1); color: #E9C77D; }
.flash.error { border-color: rgba(200, 67, 108, 0.45); background: rgba(200, 67, 108, 0.1); color: #E88A9F; }

/* --------------------------------------------------------------------------
   Tabelas (admin)
   -------------------------------------------------------------------------- */
.panel {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.panel-head { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line-soft); background: var(--paper-2); }
.panel-head h2 { margin: 0; font-size: 26px; }

table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
th, td { text-align: left; padding: 13px 22px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
th { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); font-weight: 700; }
tbody tr:hover { background: var(--iris-soft); }
td, th { color: var(--ink); }
td .muted, .muted { color: var(--faint); font-size: 13px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-bottom: 34px; }
.stat {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.stat .n { font-family: var(--display); font-size: 38px; line-height: 1; }
.stat .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }

.inline-form { display: inline; }
.linkbtn { background: none; border: 0; color: var(--muted); cursor: pointer; font-family: var(--body); font-size: 13px; letter-spacing: 0.08em; padding: 0; }
.linkbtn:hover { color: var(--iris); }
.linkbtn.danger:hover { color: var(--rose); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.form-grid .full { grid-column: 1 / -1; }

/* ==========================================================================
   ÁREA DE MEMBROS — VERSÃO CLARA (overrides dentro de .app-layout)
   ========================================================================== */
.app-layout {
  --paper:      #FAF7F2;
  --paper-2:    #F3EFE8;
  --paper-3:    #EDE8E0;
  --card:       #FFFFFF;
  --line:       rgba(180, 155, 100, 0.22);
  --line-soft:  rgba(180, 155, 100, 0.12);
  --ink:        #2A2520;
  --muted:      rgba(42, 37, 32, 0.62);
  --faint:      rgba(42, 37, 32, 0.38);
  --iris:       #B8941E;
  --iris-soft:  rgba(184, 148, 30, 0.10);
  --orchid:     #C9A832;
  --gold:       #B8941E;
  --gold-soft:  rgba(184, 148, 30, 0.10);
  --rose:       #9A7A14;
  --shadow-sm:  0 2px 8px -3px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 12px 30px -18px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 30px 60px -40px rgba(0, 0, 0, 0.15);
}
.app-layout .app-main { background: var(--paper); }
.app-layout ::selection { color: #FFFFFF; }

.app-layout .sidebar {
  background: #FFFFFF;
  border-right: 1px solid var(--line);
}
.app-layout .sidebar-top { border-bottom: 1px solid var(--line); }
.app-layout .sidebar-close { color: #8A8070; }
.app-layout .sidebar-brand { color: var(--ink); }
.app-layout .sidebar-link { color: #6B6158; }
.app-layout .sidebar-link:hover { color: var(--ink); background: rgba(184,148,30,0.06); }
.app-layout .sidebar-link.active { color: var(--gold); background: rgba(184,148,30,0.08); border-left-color: var(--gold); }
.app-layout .sidebar-link-logout:hover { color: var(--rose); }
.app-layout .sidebar-bottom { border-top: 1px solid var(--line); }
.app-layout .sidebar-user-info b { color: var(--ink); }
.app-layout .avatar { background: linear-gradient(140deg, #B8941E, #9A7A14); color: #FFFFFF; }

.app-layout .btn-primary {
  background: linear-gradient(120deg, #B8941E, #D4AF37 60%, #B8941E);
  color: #FFFFFF;
  box-shadow: 0 8px 20px -10px rgba(184, 148, 30, 0.35);
}
.app-layout .btn-primary:hover { color: #FFFFFF; }
.app-layout .btn-gold {
  background: linear-gradient(120deg, #B8941E, #D4AF37);
  color: #FFFFFF;
  box-shadow: 0 8px 20px -12px rgba(184, 148, 30, 0.4);
}
.app-layout .btn-gold:hover { color: #FFFFFF; }

.app-layout input[type="text"],
.app-layout input[type="password"],
.app-layout input[type="email"],
.app-layout input[type="number"],
.app-layout input[type="url"],
.app-layout select,
.app-layout textarea {
  background: #FFFFFF;
  border: 1px solid var(--line);
}
.app-layout input::placeholder,
.app-layout textarea::placeholder { color: rgba(42, 37, 32, 0.3); }
.app-layout input:disabled { background: var(--paper-2); }

.app-layout .notes textarea {
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.app-layout .flash.success { border-color: rgba(184, 148, 30, 0.4); background: rgba(184, 148, 30, 0.10); color: #7A6510; }
.app-layout .flash.error { border-color: rgba(180, 50, 80, 0.45); background: rgba(180, 50, 80, 0.08); color: #8C1F42; }

.app-layout .trail-player { background: var(--paper-3); }
.app-layout .player { background: #000; }

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid, .manifesto-grid, .members-teaser, .player-wrap, .auth-wrap { grid-template-columns: 1fr; }
  .pillar-grid, .quotes, .lessons { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: repeat(3, 1fr); }
  .membros-grid { grid-template-columns: 1fr 1fr; }
  .portrait { max-width: 420px; }
  .auth-art { padding: 40px; min-height: 320px; border-right: 0; border-bottom: 1px solid var(--line-soft); }

  /* sidebar responsivo */
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); box-shadow: 8px 0 30px rgba(0,0,0,0.4); }
  .app-layout .sidebar.open { box-shadow: 8px 0 30px rgba(0,0,0,0.12); }
  .sidebar-close { display: block; }
  .app-main { margin-left: 0; }
  .topbar { display: flex; }
  .app-content { padding: 30px 24px 80px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .shell, .narrow { width: calc(100% - 36px); }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    padding: 22px;
    gap: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: block; }
  .hero { padding: 140px 0 70px; }
  .sec { padding: 76px 0; }
  .pillar-grid, .quotes, .lessons, .audience, .form-grid, .journey, .membros-grid { grid-template-columns: 1fr; }
  .members-teaser { padding: 40px 26px; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
  th, td { padding: 11px 14px; }
  .app-content { padding: 20px 16px 60px; }
}

/* --------------------------------------------------------------------------
   Live semanal
   -------------------------------------------------------------------------- */
.live-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 56px 52px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 130% at 0% 0%, rgba(212, 175, 55, 0.2), transparent 60%),
    linear-gradient(150deg, var(--paper-3), var(--card) 72%);
  box-shadow: var(--shadow-md);
}
.live-card h2 { font-size: clamp(32px, 4.4vw, 56px); margin-bottom: 14px; }
.live-card .lede { margin-bottom: 28px; }

.live-times { display: grid; gap: 14px; }
.live-time {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.live-time .flag { font-size: 22px; line-height: 1; }
.live-time .hour { font-family: var(--display); font-size: 30px; color: var(--ink); }
.live-time .place { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); text-align: right; }

/* --------------------------------------------------------------------------
   Instagram
   -------------------------------------------------------------------------- */
.ig-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 34px; }
.ig-profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.4s;
}
.ig-profile:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.ig-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 24px;
  color: #FFFFFF;
  background: linear-gradient(140deg, #C13584, var(--iris) 55%, #F09433);
}
.ig-profile-body b { display: block; font-size: 17px; }
.ig-profile-body .ig-handle { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iris); }
.ig-profile-body p { margin: 6px 0 0; font-size: 14px; color: var(--muted); }
.ig-followers { text-align: right; }
.ig-followers .n { display: block; font-family: var(--display); font-size: 26px; line-height: 1; }
.ig-followers .l { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}
.ig-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.35s;
}
.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.15);
}
.ig-card iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}
.ig-card-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  text-decoration: none;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.10), var(--card) 60%);
  border-color: rgba(212, 175, 55, 0.25);
  cursor: pointer;
}
.ig-card-more:hover { border-color: var(--gold); }
.ig-more-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
  transition: transform 0.3s var(--ease);
}
.ig-card-more:hover .ig-more-icon { transform: translateX(8px); }
.ig-more-text {
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 8px;
}
.ig-more-handle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 1000px) {
  .live-card { grid-template-columns: 1fr; padding: 40px 30px; gap: 30px; }
  .ig-profiles { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ig-card iframe { height: 480px; }
  .ig-profile { grid-template-columns: auto 1fr; }
  .ig-followers { grid-column: 2; text-align: left; }
  .live-time { padding: 14px 18px; }
}


/* selo circular giratório */
.selo {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 132px;
  height: 132px;
  z-index: 3;
  pointer-events: none;
}
.selo svg { width: 100%; height: 100%; animation: gira 26s linear infinite; }
.selo text {
  font-family: var(--body);
  font-size: 9.4px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  fill: var(--gold);
}
.selo-miolo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 30px;
  color: var(--ink);
}
@keyframes gira { to { transform: rotate(360deg); } }

@media (max-width: 1000px) { .selo { display: none; } }

/* retrato com moldura deslocada */
.portrait { isolation: isolate; }
.portrait-wrap { position: relative; }
.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--r-lg);
  z-index: -1;
}

.sec-head h2 { position: relative; }

/* micro-interações */
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.btn-primary::after,
.btn-gold::after {
  content: "→";
  font-size: 15px;
  transform: translateX(-3px);
  transition: transform 0.35s var(--ease);
}
.btn-primary:hover::after,
.btn-gold:hover::after { transform: translateX(2px); }

/* tipografia: números tabulares */
.hero-stats .n, .stat .n, .progress-card .n, .ig-followers .n, .live-time .hour {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1;
}
/* aspas decorativas */
.quote { position: relative; overflow: hidden; }
.quote::after {
  content: """;
  position: absolute;
  right: 14px;
  bottom: -46px;
  font-family: var(--display);
  font-size: 130px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.06);
  pointer-events: none;
}

/* capitular no manifesto */
.manifesto-grid > div:last-child .lede:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 60px;
  line-height: 0.86;
  padding: 6px 12px 0 0;
  color: var(--iris);
}

/* pilares: linha de topo hover */
.pillar { border-top-width: 1px; }
.pillar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--iris), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.pillar:hover::after { transform: scaleX(1); }

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* rodapé com assinatura */
.footer { position: relative; overflow: hidden; }
.footer::before {
  content: "Crie a sua realidade · Alinhamento · Quebre padrões";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(46px, 9vw, 128px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .selo svg { animation: none; }
}

/* aviso de conteúdo de exemplo */
.aviso-exemplo {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px dashed rgba(200, 67, 108, 0.6);
  border-radius: var(--r-sm);
  background: rgba(200, 67, 108, 0.08);
  color: #8C1F42;
  font-size: 14.5px;
}
.aviso-exemplo code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  background: rgba(140, 31, 66, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
}

/* vídeo em destaque */
.video-destaque { position: relative; max-width: 900px; margin: 0 auto; }
.video-moldura {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-moldura iframe { width: 100%; height: 100%; border: 0; display: block; }

/* assinatura TerapeON */
.footer .credito { display: block; margin-top: 8px; }
.footer .credito a {
  color: var(--iris);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer .credito a:hover { color: var(--gold); }

@media (max-width: 700px) { .video-destaque { padding: 0 4px; } }
