/* ============================================================
   ELAS EM FOCO — identidade: vinho profundo + rose gold + off-white
   ============================================================ */

:root {
  /* paleta extraída da marca */
  --wine-950: #1d0812;
  --wine-900: #2b0e1a;
  --wine-800: #3a1424;
  --wine-700: #4a1a2e;
  --wine-600: #5e2439;
  --wine-100: #f3e7ec;
  --rose-600: #b07a5e;
  --rose-500: #c9926f;
  --rose-400: #dcae8d;
  --rose-300: #e9c6a8;
  --rose-200: #f2dcc6;
  --cream: #faf6f1;
  --paper: #f4ece4;
  --ink: #2c1a22;
  --ink-soft: #6d5560;

  --grad-rose: linear-gradient(120deg, #b07a5e 0%, #dcae8d 45%, #f2dcc6 70%, #c9926f 100%);
  --grad-wine: radial-gradient(120% 120% at 20% 10%, #4a1a2e 0%, #2b0e1a 55%, #1d0812 100%);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(43, 14, 26, 0.06);
  --shadow-md: 0 10px 40px rgba(43, 14, 26, 0.1);
  --shadow-lg: 0 24px 70px rgba(43, 14, 26, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.15; }
p { margin: 0 0 1em; }
a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Premium Images Utility ---------- */
.premium-frame {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.premium-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(176, 122, 94, 0.15);
  transition: transform 0.4s var(--ease);
}

/* Responsividade Apple/Tesla Style */
@media (min-width: 1200px) {
  .premium-frame { max-width: 460px; }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .premium-frame { max-width: 420px; }
}
@media (max-width: 991px) and (min-width: 768px) {
  .premium-frame { max-width: 360px; }
}
@media (max-width: 767px) {
  .premium-frame {
    width: clamp(85%, 90vw, 92%);
    max-width: 340px;
    margin-bottom: 28px;
  }
}

.section { padding: clamp(84px, 10vw, 140px) 0; position: relative; }
.section--tint { background: var(--paper); }
.section--dark { background: var(--grad-wine); color: var(--cream); }

::selection { background: var(--wine-700); color: var(--rose-200); }

:focus-visible {
  outline: 2px solid var(--rose-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--wine-900); color: var(--cream);
  padding: 10px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- tipografia de seção ---------- */
.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-600);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section__eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--rose-500);
}
.section__eyebrow--center { justify-content: center; }
.section__eyebrow--center::after {
  content: ""; width: 34px; height: 1px; background: var(--rose-500);
}
.section__eyebrow--light { color: var(--rose-300); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: -0.01em;
  color: var(--wine-900);
  margin-bottom: 22px;
  max-width: 21ch;
}
.section__title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section__title--center { margin-inline: auto; text-align: center; }
.section__title--light { color: var(--cream); }

.section__lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 40px;
}
.section__lead--center { margin-inline: auto; text-align: center; }
.section__lead em { font-family: var(--font-display); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) translateY(var(--lift, 0px));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), --lift 0.35s var(--ease);
  will-change: transform;
}
.btn__arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--sm { padding: 10px 22px; font-size: 0.88rem; }
.btn--lg { padding: 16px 32px; font-size: 0.98rem; }
.btn--xl { padding: 19px 42px; font-size: 1.05rem; }

.btn--primary {
  background: var(--wine-800);
  color: var(--rose-200);
  box-shadow: 0 8px 24px rgba(43, 14, 26, 0.25);
}
.btn--primary:hover {
  --lift: -3px;
  box-shadow: 0 14px 34px rgba(43, 14, 26, 0.32);
  background: var(--wine-700);
}

.btn--gold {
  background: var(--grad-rose);
  background-size: 160% auto;
  color: var(--wine-950);
  box-shadow: 0 10px 30px rgba(176, 122, 94, 0.4);
}
.btn--gold:hover {
  --lift: -3px;
  background-position: right center;
  box-shadow: 0 16px 40px rgba(176, 122, 94, 0.5);
}

.btn--ghost {
  color: var(--rose-200);
  border: 1px solid rgba(233, 198, 168, 0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--rose-300);
  background: rgba(233, 198, 168, 0.08);
  --lift: -3px;
}

.link-underline {
  font-weight: 600;
  color: var(--wine-700);
  text-decoration: none;
  background-image: linear-gradient(var(--rose-500), var(--rose-500));
  background-size: 100% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease), color 0.3s;
  padding-bottom: 2px;
}
.link-underline:hover { background-size: 35% 1.5px; color: var(--rose-600); }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--grad-wine);
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark { text-align: center; }
.loader__star {
  display: block;
  color: var(--rose-300);
  font-size: 1.6rem;
  animation: starPulse 1.4s ease-in-out infinite;
}
.loader__word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  color: var(--rose-200);
}
@keyframes starPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.45s var(--ease), box-shadow 0.45s var(--ease), backdrop-filter 0.45s;
  background: transparent;
}
.header.is-scrolled {
  background: rgba(29, 8, 18, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(29, 8, 18, 0.35);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.header__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.header__logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(233, 198, 168, 0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header__brand:hover .header__logo {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 0 0 3px rgba(233, 198, 168, 0.7);
}
.header__brandname {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--rose-200);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header__brandname em { font-style: italic; font-size: 0.85em; opacity: 0.85; }

.header__nav { display: flex; align-items: center; gap: 30px; }
.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250, 246, 241, 0.82);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.header__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--grad-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.header__link:hover { color: var(--rose-200); }
.header__link:hover::after { transform: scaleX(1); transform-origin: left; }

.header__toggle {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
}
.header__toggle span {
  width: 26px; height: 2px;
  background: var(--rose-200);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--grad-wine);
  color: var(--cream);
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 90px;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero__glow--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(176, 122, 94, 0.55), transparent 65%);
  top: -140px; right: -80px;
  animation: drift 14s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(94, 36, 57, 0.9), transparent 65%);
  bottom: -120px; left: -100px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-50px, 40px); }
}

.hero__ring {
  position: absolute;
  border: 1px solid rgba(233, 198, 168, 0.22);
  border-radius: 50%;
}
.hero__ring--1 { width: 640px; height: 640px; top: -260px; right: -180px; }
.hero__ring--2 { width: 420px; height: 420px; bottom: -190px; left: -120px; }

.hero__star {
  position: absolute;
  color: var(--rose-300);
  animation: twinkle 3.6s ease-in-out infinite;
}
.hero__star--1 { top: 22%; left: 8%; font-size: 1rem; }
.hero__star--2 { top: 64%; right: 12%; font-size: 1.3rem; animation-delay: 1.2s; }
.hero__star--3 { top: 14%; right: 34%; font-size: 0.85rem; animation-delay: 2.1s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(250, 246, 241, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  perspective: 1200px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-300);
  margin-bottom: 28px;
}
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--rose-400); flex: none; }

.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 26px;
}
.hero__title-line { display: block; }
.hero__title em { font-style: italic; font-weight: 400; }
.hero__title-accent {
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__sub {
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(250, 246, 241, 0.78);
  max-width: 52ch;
  margin-bottom: 38px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

.hero__note {
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  color: rgba(233, 198, 168, 0.65);
}

/* visual do hero — cena 3D */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__scene {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
  will-change: transform;
}
.hero__card {
  position: relative;
  width: min(360px, 78%);
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(233, 198, 168, 0.25);
  transform: rotate(3deg) translateY(var(--py, 0px));
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  animation: floatCard 7s ease-in-out infinite;
}
.hero__scene:hover .hero__card {
  transform: rotate(0deg) scale(1.02) translateY(var(--py, 0px));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 60px rgba(201, 146, 111, 0.25), 0 0 0 1px rgba(233, 198, 168, 0.45);
}
.hero__card-logo { width: 100%; height: 100%; object-fit: cover; }

/* brilho holográfico que segue o mouse */
.hero__card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--sx, 50%) var(--sy, 40%),
    rgba(242, 220, 198, 0.32), rgba(242, 220, 198, 0.06) 35%, transparent 60%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.hero__scene:hover .hero__card-shine { opacity: 1; }

/* reflexo metálico varrendo o card */
.hero__card-edge {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(242, 220, 198, 0.14) 48%, rgba(242, 220, 198, 0.03) 52%, transparent 70%);
  background-size: 260% 100%;
  animation: edgeSweep 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes edgeSweep {
  0%, 55% { background-position: 120% 0; }
  85%, 100% { background-position: -60% 0; }
}
@keyframes floatCard {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.hero__chip {
  position: absolute;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wine-900);
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  animation: floatChip 6s ease-in-out infinite;
  transform: translateZ(var(--z, 0px)) translateY(var(--py, 0px));
}
.hero__chip--1 { top: 8%; left: 2%; animation-delay: 0.4s; --z: 90px; }
.hero__chip--2 { bottom: 16%; right: 0; animation-delay: 1.6s; --z: 60px; }
.hero__chip--3 { bottom: -2%; left: 12%; animation-delay: 2.8s; --z: 120px; }
@keyframes floatChip {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* estrela orbitando o card */
.hero__orbit {
  position: absolute;
  width: 118%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(233, 198, 168, 0.18);
  animation: orbitSpin 22s linear infinite;
  transform: translateZ(30px);
  pointer-events: none;
}
.hero__orbit i {
  position: absolute;
  top: -9px; left: 50%;
  font-style: normal;
  font-size: 1rem;
  color: var(--rose-300);
  text-shadow: 0 0 12px rgba(233, 198, 168, 0.8);
}
@keyframes orbitSpin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

.hero__scrollcue {
  position: absolute;
  bottom: 26px; left: 50%;
  translate: -50% 0;
  width: 24px; height: 38px;
  border: 1.5px solid rgba(233, 198, 168, 0.45);
  border-radius: 14px;
}
.hero__scrollcue span {
  position: absolute;
  top: 7px; left: 50%;
  translate: -50% 0;
  width: 3px; height: 7px;
  border-radius: 3px;
  background: var(--rose-300);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--wine-950);
  color: var(--rose-300);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(233, 198, 168, 0.12);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sobre ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about__frame { margin: 0 auto; position: relative; max-width: 380px; }
.about__placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(74, 26, 46, 0.06), rgba(176, 122, 94, 0.14)),
    var(--paper);
  border: 1.5px dashed rgba(176, 122, 94, 0.45);
  border-radius: clamp(20px, 3vw, 28px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--rose-400);
}
.about__placeholder span { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.about__placeholder p { margin: 0; }

/* foto real da comunidade / sobre */
.about__photo {
  aspect-ratio: 4 / 5;
  object-position: center 20%;
}

.about__badge {
  position: absolute;
  bottom: 22px; left: -18px;
  background: var(--wine-800);
  color: var(--rose-200);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  max-width: 85%;
}

.about__text p { color: var(--ink-soft); }
.about__text strong { color: var(--wine-800); font-weight: 700; }
.about__quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--wine-700);
  border-left: 2px solid var(--rose-400);
  padding-left: 20px;
  margin: 28px 0;
}

/* ---------- pilares ---------- */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.pillar {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(176, 122, 94, 0.12);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pillar__num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-500);
  letter-spacing: 0.1em;
}
.pillar__title {
  font-size: 1.35rem;
  color: var(--wine-900);
  margin: 14px 0 12px;
}
.pillar__text { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }

/* ---------- cards do clube ---------- */
.club__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid rgba(176, 122, 94, 0.14);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--grad-rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(176, 122, 94, 0.3); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--wine-100), var(--rose-200));
  color: var(--wine-700);
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease), background 0.45s;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }

.card__title { font-size: 1.25rem; color: var(--wine-900); margin-bottom: 10px; }
.card__text { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- manifesto (scroll-driven) ---------- */
.manifesto {
  height: 200vh;
  background: var(--cream);
  position: relative;
}
.manifesto__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0 clamp(24px, 6vw, 80px);
}
.manifesto__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-600);
  margin-bottom: 30px;
}
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 3.3rem);
  line-height: 1.35;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--wine-900);
}
.manifesto__text .word {
  opacity: 0.13;
  transition: opacity 0.35s var(--ease);
}
.manifesto__text .word.is-lit { opacity: 1; }

/* ---------- cursos online (carrossel horizontal) ---------- */
.courses { position: relative; background: var(--paper); }
.courses__pin { padding: clamp(84px, 10vw, 120px) 0; }
.courses.is-pinned .courses__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.courses__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
}
.courses__head .section__lead { margin-bottom: 0; }
.courses__head-cta { flex: none; }

.courses__track {
  display: flex;
  gap: 22px;
  padding-inline: max(24px, calc((100vw - 1160px) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-400) transparent;
  padding-bottom: 14px;
}
.courses__track::-webkit-scrollbar { height: 5px; }
.courses__track::-webkit-scrollbar-thumb { background: var(--rose-400); border-radius: 4px; }
.courses__track .course {
  flex: 0 0 min(330px, 82vw);
  scroll-snap-align: start;
}
.courses.is-pinned .courses__track {
  overflow: visible;
  width: max-content;
  transform: translateX(var(--tx, 0px));
  will-change: transform;
  padding-bottom: 0;
}
.courses.is-pinned .courses__track .course { flex: 0 0 340px; }

/* ---------- cursos em destaque (duo) ---------- */
.courses__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cfeature {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(176, 122, 94, 0.16);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.cfeature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 122, 94, 0.35);
}
.cfeature__media {
  position: relative;
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) 0 0;
}
.cfeature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cfeature:hover .cfeature__media img { transform: scale(1.05); }

/* aspect ratio quadrado para imagens 1:1 */
.cfeature__media--square { aspect-ratio: 1; }
.cfeature__flag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-950);
  background: var(--grad-rose);
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.cfeature__media--gen {
  background: var(--grad-wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.cfeature__gen-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose-300);
}
.cfeature__gen-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cfeature__gen-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(233, 198, 168, 0.8);
}
.cfeature__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px clamp(22px, 3vw, 34px) 30px;
}
.cfeature__title {
  font-size: 1.6rem;
  color: var(--wine-900);
  margin-bottom: 12px;
}
.cfeature__hook { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 18px; }
.cfeature__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.cfeature__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.cfeature__list li span { flex: none; }
.cfeature__list strong { color: var(--wine-800); }
.cfeature__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(176, 122, 94, 0.15);
  padding-top: 22px;
}
.cfeature__price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--wine-800);
  white-space: nowrap;
}
.cfeature__price small { font-size: 0.55em; font-weight: 600; }

/* ---------- mini curso (duo) ---------- */
.mini__duo {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.mini__media { position: relative; }
.mini__cover {
  /* Inherits from .premium-img */
}
.mini__media:hover .mini__cover {
  transform: rotate(-1.5deg) scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 50px rgba(201, 146, 111, 0.25), 0 0 0 1px rgba(233, 198, 168, 0.5);
}
.mini__pricetag {
  position: absolute;
  top: -16px; right: -14px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--wine-950);
  background: var(--grad-rose);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(176, 122, 94, 0.5);
  animation: floatChip 5s ease-in-out infinite;
}
.mini__pricetag small { font-size: 0.55em; font-weight: 600; }
.mini__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.mini__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(250, 246, 241, 0.85);
  font-size: 0.97rem;
}
.mini__list li span { color: var(--rose-300); flex: none; }
.mini__bonus {
  font-size: 0.9rem;
  color: rgba(233, 198, 168, 0.85);
  border: 1px dashed rgba(233, 198, 168, 0.35);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 26px;
}
.mini__bonus strong { color: var(--rose-200); }
.mini__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.mini__note {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(233, 198, 168, 0.75);
}

/* ---------- loja ---------- */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(176, 122, 94, 0.15);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 122, 94, 0.35);
}
.shop-card__media {
  aspect-ratio: 1;
  background: #f2eeea;
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.shop-card:hover .shop-card__media img { transform: scale(1.07); }
.shop-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 18px;
}
.shop-card__title { font-size: 1.08rem; color: var(--wine-900); margin-bottom: 8px; }
.shop-card__text { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 16px; flex: 1; }
.shop-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.shop-card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--wine-800);
  white-space: nowrap;
}
.shop-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose-600);
  text-decoration: none;
  transition: color 0.3s, gap 0.35s var(--ease);
  white-space: nowrap;
}
.shop-card__link:hover { color: var(--wine-800); gap: 10px; }
.shop-card__cause {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--rose-600);
  border-top: 1px dashed rgba(176, 122, 94, 0.25);
  padding-top: 10px;
}
.shop__cta { text-align: center; margin-top: 44px; }

/* ---------- seção do livro ---------- */
.book__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.book__frame { position: relative; }
.book__author-photo {
  aspect-ratio: 3 / 4;
  object-position: center 20%;
}
.book__text p { color: var(--ink-soft); font-size: 1.05rem; }
.book__details { margin-top: 28px; }
.book__product {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(176, 122, 94, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.book__cover {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex: none;
}
.book__info { display: grid; gap: 6px; }
.book__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--wine-800);
}
.book__price small { font-size: 0.55em; font-weight: 600; }
.book__cause {
  font-size: 0.78rem;
  color: var(--rose-600);
  letter-spacing: 0.02em;
}

/* ---------- foto da fundadora ---------- */
.founder__photo {
  aspect-ratio: 4 / 5;
  object-position: center 15%;
}

/* ---------- contadores ---------- */
.counter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  background: linear-gradient(120deg, var(--rose-600), var(--rose-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- profundidade 3D no scroll ---------- */
.depth-3d {
  transform-origin: 50% 20%;
  will-change: transform, opacity;
}
.hero__ring { transform: translateY(var(--py, 0px)); }
.hero__inner { will-change: transform, opacity; }
.course {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  border: 1px solid rgba(176, 122, 94, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.course::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--grad-rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.course:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 122, 94, 0.35);
}
.course:hover::after { transform: scaleX(1); }

.course__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.course__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine-700);
  background: linear-gradient(140deg, var(--wine-100), var(--rose-200));
  padding: 6px 14px;
  border-radius: 999px;
}
.course__star {
  color: var(--rose-400);
  transition: transform 0.5s var(--ease);
}
.course:hover .course__star { transform: rotate(180deg) scale(1.2); }

.course__title {
  font-size: 1.22rem;
  color: var(--wine-900);
  margin-bottom: 10px;
  line-height: 1.25;
}
.course__text { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }

.course__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rose-600);
  margin-bottom: 18px;
}
.course__meta i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rose-400);
}
.course__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wine-800);
  text-decoration: none;
  transition: color 0.3s, gap 0.35s var(--ease);
}
.course__link:hover { color: var(--rose-600); gap: 12px; }

/* ---------- mini cursos ---------- */
.mini { overflow: hidden; }
.mini__bg { position: absolute; inset: 0; pointer-events: none; }
.section__lead--dark { color: rgba(250, 246, 241, 0.72); }

.mini__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.mini-card {
  position: relative;
  background: rgba(250, 246, 241, 0.06);
  border: 1px solid rgba(233, 198, 168, 0.16);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.mini-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 198, 168, 0.45);
  background: rgba(250, 246, 241, 0.08);
}
.mini-card__lock {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: var(--rose-300);
  border: 1px solid rgba(233, 198, 168, 0.3);
  margin-bottom: 18px;
  transition: transform 0.45s var(--ease), color 0.3s, border-color 0.3s;
}
.mini-card__lock svg { width: 20px; height: 20px; }
.mini-card:hover .mini-card__lock {
  transform: rotate(-8deg) scale(1.08);
  color: var(--rose-200);
  border-color: rgba(233, 198, 168, 0.6);
}
.mini-card__title { font-size: 1.18rem; color: var(--rose-200); margin-bottom: 8px; }
.mini-card__text { color: rgba(250, 246, 241, 0.68); font-size: 0.92rem; margin-bottom: 16px; }
.mini-card__dur {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-400);
}
.mini-card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(150deg, rgba(176, 122, 94, 0.22), rgba(74, 26, 46, 0.35));
  border-color: rgba(233, 198, 168, 0.35);
}
.mini-card__spark {
  color: var(--rose-300);
  font-size: 1.5rem;
  margin-bottom: 14px;
  animation: twinkle 3.2s ease-in-out infinite;
}
.mini-card--cta .btn { margin-top: 6px; }

/* ---------- inscrição (join) ---------- */
.join { padding-top: clamp(70px, 8vw, 110px); }
.join__card {
  position: relative;
  background: var(--grad-wine);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: clamp(40px, 6vw, 72px);
  color: var(--cream);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(29, 8, 18, 0.35);
}
/* borda dourada animada */
.join__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--join-angle, 0deg),
    rgba(233, 198, 168, 0) 0%,
    rgba(233, 198, 168, 0.9) 12%,
    rgba(176, 122, 94, 0.4) 30%,
    rgba(233, 198, 168, 0) 45%,
    rgba(233, 198, 168, 0) 60%,
    rgba(233, 198, 168, 0.7) 78%,
    rgba(233, 198, 168, 0) 95%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: joinSpin 6s linear infinite;
  pointer-events: none;
}
@property --join-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes joinSpin { to { --join-angle: 360deg; } }

/* brilho que varre o card */
.join__card::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(242, 220, 198, 0.07), transparent);
  transform: skewX(-18deg);
  animation: joinSheen 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes joinSheen {
  0%, 55% { left: -60%; }
  85%, 100% { left: 130%; }
}

.join__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-950);
  background: var(--grad-rose);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 34px;
  box-shadow: 0 10px 26px rgba(176, 122, 94, 0.45);
}
.join__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wine-800);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58, 20, 36, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(58, 20, 36, 0); }
}

.join__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.join__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-300);
  margin-bottom: 14px;
}
.join__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
}
.join__title em {
  font-style: italic;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.join__sub {
  color: rgba(250, 246, 241, 0.75);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 28px;
}
.join__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 12px;
}
.join__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: rgba(250, 246, 241, 0.88);
}
.join__list span { color: var(--rose-300); flex: none; }

.join__action {
  position: relative;
  text-align: center;
  background: rgba(250, 246, 241, 0.05);
  border: 1px solid rgba(233, 198, 168, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 46px) clamp(24px, 3vw, 38px);
  backdrop-filter: blur(6px);
}
.join__hook {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--rose-200);
  margin-bottom: 24px;
}
.join__hook em { font-style: italic; }
.join__btn {
  width: 100%;
  justify-content: center;
  animation: btnGlow 2.6s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(176, 122, 94, 0.4); }
  50% { box-shadow: 0 14px 44px rgba(220, 174, 141, 0.65); }
}
.join__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(233, 198, 168, 0.7);
}
.join__secure svg { width: 15px; height: 15px; flex: none; }

/* ---------- como funciona ---------- */
.how__steps {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.how__step {
  position: relative;
  background: rgba(250, 246, 241, 0.04);
  border: 1px solid rgba(233, 198, 168, 0.16);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: blur(4px);
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.how__step:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 198, 168, 0.4);
  background: rgba(250, 246, 241, 0.07);
}
.how__num {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--wine-950);
  background: var(--grad-rose);
  margin-bottom: 20px;
}
.how__title { font-size: 1.3rem; color: var(--rose-200); margin-bottom: 10px; }
.how__text { color: rgba(250, 246, 241, 0.7); font-size: 0.95rem; margin: 0; }
.how__cta { text-align: center; margin-top: 56px; }
.how { border-top: 1px solid rgba(233, 198, 168, 0.14); }

/* ---------- para quem é ---------- */
.who__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.who__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 14px;
}
.who__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(176, 122, 94, 0.14);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.who__item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 122, 94, 0.35);
}
.who__check { color: var(--rose-500); flex: none; line-height: 1.7; }

/* ---------- comunidade ---------- */
.community__inner { text-align: center; }
.community__band {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 4vw, 56px);
  margin: 60px auto 20px;
  padding: 36px clamp(20px, 4vw, 56px);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(176, 122, 94, 0.15);
  box-shadow: var(--shadow-md);
  max-width: 860px;
}
.community__stat { display: grid; gap: 8px; place-items: center; }
.community__stat-value { font-size: 1.5rem; color: var(--rose-500); }
.community__stat-label {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.community__divider { width: 1px; background: rgba(176, 122, 94, 0.25); }

.community__manifesto {
  margin: 60px auto 0;
  max-width: 640px;
}
.community__manifesto p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.3;
  color: var(--wine-800);
  margin: 0;
}
.community__manifesto em {
  font-style: italic;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.community__cta { margin-top: 48px; }

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.faq__list { display: grid; gap: 14px; }

.faq__item {
  background: #fff;
  border: 1px solid rgba(176, 122, 94, 0.16);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
}
.faq__item:hover { border-color: rgba(176, 122, 94, 0.35); }
.faq__item[open] { box-shadow: var(--shadow-md); border-color: rgba(176, 122, 94, 0.35); }

.faq__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--wine-900);
  transition: color 0.3s;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--rose-600); }

.faq__icon {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--wine-100), var(--rose-200));
  transition: transform 0.45s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.6px;
  background: var(--wine-700);
  translate: -50% -50%;
  transition: transform 0.45s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.faq__answer p { margin: 0; }

/* ---------- CTA final ---------- */
.final { overflow: hidden; }
.final__bg { position: absolute; inset: 0; pointer-events: none; }
.final__inner { position: relative; text-align: center; }
.final__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}
.final__title em {
  font-style: italic;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.final__sub {
  font-size: 1.1rem;
  color: rgba(250, 246, 241, 0.75);
  max-width: 46ch;
  margin: 0 auto 40px;
}
.final__note {
  margin-top: 26px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: rgba(233, 198, 168, 0.65);
}

/* ---------- footer ---------- */
.footer {
  background: var(--wine-950);
  color: rgba(250, 246, 241, 0.75);
  padding: 70px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(233, 198, 168, 0.12);
}
.footer__logo {
  width: 72px; height: 72px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 0 0 1px rgba(233, 198, 168, 0.25);
}
.footer__tagline { font-size: 0.95rem; line-height: 1.7; margin: 0; }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin: 0 0 18px;
}
.footer__nav { display: grid; gap: 10px; align-content: start; }
.footer__nav a, .footer__social-link {
  color: rgba(250, 246, 241, 0.72);
  text-decoration: none;
  font-size: 0.94rem;
  width: fit-content;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.footer__nav a:hover, .footer__social-link:hover {
  color: var(--rose-300);
  transform: translateX(4px);
}
.footer__social { display: grid; gap: 12px; align-content: start; }
.footer__social-link { display: inline-flex; align-items: center; gap: 10px; }
.footer__social-link svg { width: 19px; height: 19px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 28px;
  font-size: 0.82rem;
  color: rgba(250, 246, 241, 0.45);
}
.footer__bottom p { margin: 0; }
.footer__made { font-family: var(--font-display); font-style: italic; }

/* ---------- utilidades ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.hp-field { position: absolute; left: -9999px; }

/* ---------- barra de anúncio ---------- */
:root { --bar-h: 0px; }
body.has-bar { --bar-h: 42px; }
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 42px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--wine-950);
  border-bottom: 1px solid rgba(233, 198, 168, 0.2);
}
.topbar[hidden] { display: none !important; }
.topbar__text {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--rose-300);
}
.topbar__text a {
  color: var(--rose-200);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.topbar__text a:hover { color: #fff; }
.topbar__close {
  position: absolute;
  right: 14px;
  background: none;
  border: 0;
  color: var(--rose-300);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.topbar__close:hover { color: #fff; transform: rotate(90deg); }

body.has-bar .header { top: var(--bar-h); }
body.has-bar .hero { padding-top: calc(var(--header-h) + var(--bar-h) + 40px); }
body.has-bar .progress { top: var(--bar-h); }

/* ---------- fundadora ---------- */
.founder__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.founder__text p { color: var(--ink-soft); }
.founder__sign { margin-top: 28px; display: grid; gap: 4px; }
.founder__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  background: linear-gradient(120deg, var(--wine-700), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.founder__role { font-size: 0.9rem; color: var(--ink-soft); }
.founder__frame { position: relative; }
.founder__badge { left: auto; right: -14px; }

/* ---------- lista de espera ---------- */
.news__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(176, 122, 94, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow-md);
}
.news__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--wine-900);
  margin-bottom: 14px;
}
.news__title em {
  font-style: italic;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.news__sub { color: var(--ink-soft); margin: 0; }
.news__row { display: flex; gap: 12px; }
.news__input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(176, 122, 94, 0.3);
  border-radius: 999px;
  padding: 15px 24px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.news__input::placeholder { color: var(--ink-soft); opacity: 0.7; }
.news__input:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(201, 146, 111, 0.15);
}
.news__btn { flex: none; }

/* ---------- popup de saída ---------- */
.exit {
  position: fixed;
  inset: 0;
  z-index: 280;
  display: grid;
  place-items: center;
  padding: 24px;
}
.exit[hidden] { display: none; }
.exit__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 8, 18, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s;
}
.exit__card {
  position: relative;
  max-width: 440px;
  width: 100%;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 38px 38px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(233, 198, 168, 0.5);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.exit.is-open .exit__backdrop { opacity: 1; }
.exit.is-open .exit__card { transform: translateY(0) scale(1); opacity: 1; }
.exit__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: 0;
  font-size: 1.5rem;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.exit__close:hover { color: var(--wine-800); transform: rotate(90deg); }
.exit__star {
  display: block;
  font-size: 1.6rem;
  color: var(--rose-500);
  margin-bottom: 14px;
  animation: twinkle 3s ease-in-out infinite;
}
.exit__title {
  font-size: 1.9rem;
  color: var(--wine-900);
  margin-bottom: 12px;
}
.exit__text { color: var(--ink-soft); margin-bottom: 26px; }
.exit__btn { width: 100%; justify-content: center; }
.exit__later {
  display: block;
  margin: 16px auto 0;
  background: none; border: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.exit__later:hover { color: var(--wine-800); }

/* ---------- camadas 3D internas dos cards ---------- */
.card, .course, .mini-card, .pillar { transform-style: preserve-3d; }
.card__icon, .card__title,
.course__top, .course__title, .course__link,
.mini-card__lock, .mini-card__title,
.pillar__num, .pillar__title {
  transition: transform 0.45s var(--ease);
}
.card:hover .card__icon { transform: translateZ(46px) scale(1.08) rotate(-4deg); }
.card:hover .card__title { transform: translateZ(30px); }
.course:hover .course__top { transform: translateZ(46px); }
.course:hover .course__title { transform: translateZ(32px); }
.course:hover .course__link { transform: translateZ(24px); }
.mini-card:hover .mini-card__lock { transform: translateZ(46px) rotate(-8deg) scale(1.08); }
.mini-card:hover .mini-card__title { transform: translateZ(28px); }
.pillar:hover .pillar__num { transform: translateZ(40px); }
.pillar:hover .pillar__title { transform: translateZ(26px); }

/* ---------- estrela 3D do CTA final ---------- */
.star3d-wrap {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -56%;
  width: min(340px, 70vw);
  aspect-ratio: 1;
  perspective: 900px;
  pointer-events: none;
  opacity: 0.3;
}
.star3d-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 111, 0.5), transparent 65%);
  filter: blur(30px);
}
.star3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: star3dSpin 20s linear infinite;
}
.star3d i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: min(290px, 58vw);
  line-height: 1;
  backface-visibility: visible;
}
.star3d i:nth-child(odd) { color: var(--rose-300); }
.star3d i:nth-child(even) { color: var(--rose-500); }
.star3d i:nth-child(1) { transform: rotateY(0deg); }
.star3d i:nth-child(2) { transform: rotateY(30deg); }
.star3d i:nth-child(3) { transform: rotateY(60deg); }
.star3d i:nth-child(4) { transform: rotateY(90deg); }
.star3d i:nth-child(5) { transform: rotateY(120deg); }
.star3d i:nth-child(6) { transform: rotateY(150deg); }
@keyframes star3dSpin {
  from { transform: rotateX(8deg) rotateY(0deg); }
  to { transform: rotateX(8deg) rotateY(360deg); }
}

/* ---------- logo-moeda 3D no footer ---------- */
.footer__brand { perspective: 700px; }
.footer__logo { backface-visibility: visible; }
.footer__logo.is-spun { animation: coinSpin 1.7s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes coinSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(720deg); }
}

/* ---------- barra de progresso ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad-rose);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 150;
  pointer-events: none;
}

/* ---------- cursor personalizado ---------- */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 400;
  translate: -50% -50%;
  opacity: 0;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201, 146, 111, 0.75);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s, border-color 0.3s, background-color 0.3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--rose-500);
}
body.has-cursor .cursor, body.has-cursor .cursor-dot { opacity: 1; }
body.has-cursor, body.has-cursor * { cursor: none !important; }
.cursor.is-hover {
  width: 58px; height: 58px;
  border-color: rgba(233, 198, 168, 0.9);
  background: rgba(233, 198, 168, 0.08);
}

/* ---------- curvas entre seções ---------- */
.curve {
  position: absolute;
  top: -1px; left: 0;
  width: 100%;
  height: clamp(28px, 5vw, 64px);
  display: block;
  pointer-events: none;
}

/* ---------- textura de ruído ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 240;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- botões flutuantes ---------- */
.fab, .totop {
  position: fixed;
  right: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s, box-shadow 0.3s;
}
.fab.is-show, .totop.is-show { opacity: 1; visibility: visible; transform: translateY(0); }

.fab {
  bottom: 22px;
  width: 56px; height: 56px;
  background: var(--grad-rose);
  color: var(--wine-950);
  box-shadow: 0 14px 34px rgba(176, 122, 94, 0.45);
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { box-shadow: 0 18px 44px rgba(176, 122, 94, 0.6); }

.totop {
  bottom: 92px;
  width: 44px; height: 44px;
  background: rgba(43, 14, 26, 0.9);
  color: var(--rose-300);
  border: 1px solid rgba(233, 198, 168, 0.3);
  backdrop-filter: blur(8px);
}
.totop svg { width: 18px; height: 18px; }
.totop:hover { color: var(--rose-200); border-color: rgba(233, 198, 168, 0.6); }

/* ---------- reveal (scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* títulos com revelação cinematográfica (blur + subida) */
.section__title.reveal, .final__title.reveal, .hero__title-line.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(12px);
  transition: opacity 0.95s var(--ease), transform 1s var(--ease), filter 0.9s var(--ease);
}
.section__title.reveal.is-visible, .final__title.reveal.is-visible, .hero__title-line.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- responsivo ---------- */
@media (max-width: 1020px) {
  .header__nav { gap: 18px; }
  .header__link { font-size: 0.84rem; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__eyebrow, .hero__actions { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__visual { margin-top: 40px; }
  .hero__chip--1 { left: 6%; }
  .hero__chip--2 { right: 4%; }

  .pillars__grid, .club__grid, .how__steps { grid-template-columns: repeat(2, 1fr); }
  .mini__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .who__grid, .faq__grid, .join__grid, .founder__grid, .news__card, .courses__duo, .mini__duo, .book__grid { grid-template-columns: 1fr; }
  .mini__media { max-width: 460px; margin-inline: auto; }
  .mini__pricetag { right: 6px; }
  .founder__frame { margin-inline: auto; }
  .courses__head { flex-direction: column; align-items: flex-start; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .book__media { max-width: 460px; margin-inline: auto; }
}

@media (max-width: 900px) {
  .header__toggle { display: flex; }
  .header__nav {
    position: fixed;
    top: calc(var(--header-h) + var(--bar-h, 0px)); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(29, 8, 18, 0.97);
    backdrop-filter: blur(16px);
    padding: 18px 24px 28px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  }
  .header__nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .header__link { padding: 15px 4px; font-size: 1.02rem; border-bottom: 1px solid rgba(233, 198, 168, 0.1); }
  .header__cta { margin-top: 18px; justify-content: center; }
}

@media (max-width: 680px) {
  :root {
    --header-h: 64px;
  }

  .container { width: calc(100% - 32px); }
  .header__brandname { display: none; }

  /* seções com menos padding no mobile */
  .section { padding: clamp(56px, 8vw, 84px) 0; }

  /* hero ajustes mobile */
  .hero { padding: calc(var(--header-h) + 24px) 0 60px; min-height: auto; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__sub { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; text-align: center; }
  .hero__note { text-align: center; font-size: 0.76rem; }
  .hero__card { width: min(260px, 70%); }
  .hero__chip { font-size: 0.74rem; padding: 8px 14px; }
  .hero__chip--1 { left: 0; top: 4%; }
  .hero__chip--2 { right: 0; bottom: 12%; }
  .hero__chip--3 { display: none; }
  .hero__scrollcue { display: none; }

  /* grids para 1 coluna */
  .pillars__grid, .club__grid, .how__steps, .mini__grid { grid-template-columns: 1fr; }

  /* sobre */
  .about__photo { aspect-ratio: 1; object-position: center 20%; }
  .about__badge { left: 10px; font-size: 0.82rem; padding: 10px 18px; }

  /* fundadora */
  .founder__photo { aspect-ratio: 1; object-position: center 15%; }
  .founder__badge { right: 10px; font-size: 0.82rem; }
  .founder__name { font-size: 1.4rem; }

  /* tipografia de seção */
  .section__title { font-size: clamp(1.6rem, 6vw, 2.2rem); max-width: none; }
  .section__lead { font-size: 0.98rem; }
  .section__eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; }

  /* cards menores */
  .card { padding: 28px 22px; }
  .card__title { font-size: 1.12rem; }
  .card__text { font-size: 0.9rem; }
  .card__icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px; }
  .card__icon svg { width: 22px; height: 22px; }

  /* pilares */
  .pillar { padding: 28px 22px; }
  .pillar__title { font-size: 1.2rem; }

  /* cursos */
  .courses__duo { gap: 20px; }
  .cfeature__title { font-size: 1.3rem; }
  .cfeature__body { padding: 22px 18px 24px; }
  .cfeature__hook { font-size: 0.92rem; }
  .cfeature__list li { font-size: 0.88rem; }
  .cfeature__price { font-size: 1.6rem; }
  .cfeature__foot { flex-direction: column; align-items: stretch; text-align: center; gap: 14px; }
  .cfeature__foot .btn { justify-content: center; }
  .cfeature__media--square { aspect-ratio: 1; }

  /* mini curso LinkedIn */
  .mini__duo { gap: 30px; }
  .mini__pricetag { top: -12px; right: -6px; font-size: 1.3rem; padding: 10px 18px; }
  .mini__content .section__title { max-width: none; }
  .mini__list li { font-size: 0.92rem; }
  .mini__bonus { font-size: 0.85rem; padding: 12px 14px; }
  .mini__actions { flex-direction: column; align-items: stretch; text-align: center; }
  .mini__actions .btn { justify-content: center; }
  .mini__note { text-align: center; }

  /* manifesto */
  .manifesto { height: 160vh; }
  .manifesto__text { font-size: clamp(1.4rem, 6vw, 2rem); max-width: 18ch; }

  /* como funciona */
  .how__steps { gap: 16px; margin-top: 36px; }
  .how__step { padding: 28px 22px; }
  .how__title { font-size: 1.15rem; }
  .how__text { font-size: 0.9rem; }
  .how__num { width: 42px; height: 42px; font-size: 1.1rem; }

  /* para quem é */
  .who__grid { gap: 30px; }
  .who__item { padding: 16px 18px; font-size: 0.95rem; gap: 12px; }

  /* comunidade */
  .community__band { flex-direction: column; gap: 26px; padding: 28px 20px; }
  .community__divider { width: 60%; height: 1px; margin-inline: auto; }
  .community__manifesto p { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* loja */
  .shop__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shop-card__body { padding: 14px 14px 12px; }
  .shop-card__title { font-size: 0.95rem; }
  .shop-card__text { font-size: 0.82rem; margin-bottom: 10px; }
  .shop-card__price { font-size: 1rem; }
  .shop-card__link { font-size: 0.78rem; }
  .shop-card__cause { font-size: 0.68rem; }

  /* livro */
  .book__grid { gap: 30px; }
  .book__author-photo { aspect-ratio: 1; object-position: center top; border-radius: var(--radius); }
  .book__product { gap: 14px; padding: 14px; }
  .book__cover { width: 64px; height: 64px; border-radius: 10px; }
  .book__price { font-size: 1.5rem; }

  /* inscrição */
  .join__card { padding: clamp(28px, 5vw, 40px); }
  .join__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .join__sub { font-size: 0.95rem; }
  .join__list li { font-size: 0.92rem; }
  .join__btn { font-size: 0.95rem; padding-inline: 24px; }
  .join__action { padding: 22px 18px; }
  .join__hook { font-size: 1.25rem; }
  .join__secure { font-size: 0.74rem; flex-wrap: wrap; justify-content: center; }

  /* FAQ */
  .faq__grid { gap: 30px; }
  .faq__question { padding: 18px 18px; font-size: 1rem; gap: 14px; }
  .faq__answer { padding: 0 18px 18px; font-size: 0.92rem; }
  .faq__icon { width: 26px; height: 26px; }
  .faq__icon::before, .faq__icon::after { width: 9px; }

  /* lista de espera */
  .news__card { padding: clamp(24px, 4vw, 36px); gap: 20px; }
  .news__title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .news__row { flex-direction: column; }
  .news__btn { justify-content: center; }
  .news__input { padding: 14px 20px; }

  /* CTA final */
  .final__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .final__sub { font-size: 0.98rem; }
  .final__note { font-size: 0.76rem; }
  .final__actions .btn { width: 100%; justify-content: center; }

  /* footer */
  .footer { padding: 48px 0 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { justify-content: center; text-align: center; flex-direction: column; }
  .footer__tagline { font-size: 0.88rem; }

  /* topbar */
  .topbar__text { font-size: 0.72rem; padding-right: 34px; text-align: center; }
  .topbar__close { right: 8px; font-size: 1.5rem; padding: 8px 12px; z-index: 1; }

  /* botões flutuantes */
  .fab { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .fab svg { width: 22px; height: 22px; }
  .totop { bottom: 78px; width: 40px; height: 40px; right: 16px; }
  .totop svg { width: 16px; height: 16px; }

  /* botões gerais */
  .btn--lg { padding: 14px 26px; font-size: 0.92rem; }
  .btn--xl { padding: 16px 32px; font-size: 0.98rem; }

  /* courses head cta */
  .courses__head-cta { width: 100%; justify-content: center; }
}

/* Extra small phones */
@media (max-width: 400px) {
  .container { width: calc(100% - 24px); }
  .hero__title { font-size: 1.8rem; }
  .hero__card { width: min(220px, 65%); }
  .shop__grid { grid-template-columns: 1fr; }
  .community__stat-value { font-size: 1.2rem; }
  .community__stat-label { font-size: 0.82rem; }
  .join__badge { font-size: 0.68rem; padding: 7px 14px; }
  .cfeature__gen-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
}

/* ---------- movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
