/* ═══════════════════════════════════════════════════════════════════════════
   ETERNIZA · landing page
   styles.css — design system + sections
   ─────────────────────────────────────────────────────────────────────────── */

/* ── BRAND TOKENS ─────────────────────────────────────────────────────────── */
:root {
  /* paleta */
  --eclipse:  #05060A;
  --eclipse-2:#0A0B12;
  --midnight: #0B1430;
  --pink:     #FF5BA8;
  --purple:   #A855F7;
  --blue:     #3B82F6;
  --linho:    #F6F6F8;
  --linho-60: rgba(246,246,248,0.6);
  --linho-40: rgba(246,246,248,0.4);
  --linho-30: rgba(246,246,248,0.3);
  --linho-20: rgba(246,246,248,0.2);
  --linho-10: rgba(246,246,248,0.1);
  --linho-06: rgba(246,246,248,0.06);

  /* gradiente assinatura */
  --dusk: linear-gradient(115deg, #FF5BA8 0%, #A855F7 55%, #3B82F6 100%);
  --dusk-soft: linear-gradient(115deg, rgba(255,91,168,0.18) 0%, rgba(168,85,247,0.18) 55%, rgba(59,130,246,0.18) 100%);

  /* tipografia */
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans:  'Geist', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* escala */
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* sombras / glows */
  --glow-pink:   0 0 60px rgba(255, 91, 168, 0.35);
  --glow-purple: 0 0 60px rgba(168, 85, 247, 0.30);
  --glow-blue:   0 0 60px rgba(59, 130, 246, 0.30);
  --shadow-card: 0 30px 60px -20px rgba(0,0,0,0.6);

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--linho);
  background: var(--eclipse);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
em { font-style: italic; }

::selection { background: var(--pink); color: var(--eclipse); }

/* utilitários */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.grad {
  background: var(--dusk);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linho-60);
  margin-bottom: 24px;
}
.eyebrow em { color: var(--linho); font-style: italic; }
.eyebrow--center { text-align: center; }

/* section title (serif emocional) */
.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 28px;
}
.section-sub {
  text-align: center;
  color: var(--linho-60);
  margin-bottom: 56px;
  font-size: 16px;
}

/* dot */
.dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--linho-40);
  margin-right: 8px;
  vertical-align: middle;
}
.dot--grad { background: var(--dusk); box-shadow: 0 0 12px rgba(255,91,168,0.6); }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn__icon { display: inline-flex; align-items: center; }
.btn--primary {
  background: var(--dusk);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(255, 91, 168, 0.6), inset 0 0 0 1px rgba(255,255,255,0.12);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(255, 91, 168, 0.8), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn--ghost {
  background: var(--linho-06);
  color: var(--linho);
  box-shadow: inset 0 0 0 1px var(--linho-20);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--linho-10);
  box-shadow: inset 0 0 0 1px var(--linho-40);
}
.btn--block { width: 100%; }
.btn--xl { padding: 20px 36px; font-size: 16px; }

/* ── AUDIO GATE ───────────────────────────────────────────────────────────── */
.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: radial-gradient(circle at 50% 50%, #0a0b18 0%, #05060A 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}
.gate.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.gate::before, .gate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gate::before {
  background:
    radial-gradient(600px 400px at 30% 35%, rgba(255,91,168,0.18), transparent 60%),
    radial-gradient(600px 400px at 70% 60%, rgba(59,130,246,0.18), transparent 60%);
  filter: blur(20px);
}
.gate::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.gate__inner {
  position: relative;
  text-align: center;
  max-width: 560px;
}
.gate__symbol {
  width: 86px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 40px rgba(168,85,247,0.6));
  animation: pulseGlow 2.4s var(--ease) infinite;
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(168,85,247,0.5)); transform: scale(1); }
  50%      { filter: drop-shadow(0 0 60px rgba(255,91,168,0.8)); transform: scale(1.04); }
}
.gate__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--linho-60);
  margin-bottom: 18px;
}
.gate__title {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.gate__title em {
  background: var(--dusk);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gate__sub {
  color: var(--linho-60);
  margin-bottom: 36px;
  font-size: 15px;
}
.gate__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  background: var(--dusk);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 14px 40px -10px rgba(255,91,168,0.7), inset 0 0 0 1px rgba(255,255,255,0.14);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.gate__btn:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -10px rgba(255,91,168,0.9); }
.gate__btn-icon {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  font-size: 10px;
}
.gate__skip {
  display: block;
  margin: 24px auto 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linho-40);
  padding: 8px 12px;
  transition: color 0.3s var(--ease);
}
.gate__skip:hover { color: var(--linho); }

/* ── HEADER ───────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(5,6,10,0.7), rgba(5,6,10,0));
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(5,6,10,0.78);
  border-bottom: 1px solid var(--linho-06);
}
.header__logo { display: flex; align-items: center; }
.header__logo img { height: 28px; width: auto; }
.header__nav {
  display: flex; gap: 28px;
  margin-left: auto;
  font-size: 13px;
  color: var(--linho-60);
}
.header__nav a { transition: color 0.3s var(--ease); }
.header__nav a:hover { color: var(--linho); }
.header__cta {
  margin-left: auto;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--dusk);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 6px 20px -6px rgba(255,91,168,0.6);
  transition: transform 0.3s var(--ease);
}
.header__cta:hover { transform: translateY(-1px); }

@media (max-width: 880px) {
  .header__nav { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-height: 880px) {
  .hero { align-items: flex-start; padding-top: 110px; }
}

.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(80% 80% at 50% 50%, #0a0c18 0%, #05060A 70%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.orb--pink   { width: 480px; height: 480px; background: #FF5BA8; top: -120px; left: -120px; }
.orb--purple { width: 520px; height: 520px; background: #A855F7; bottom: -160px; right: -140px; opacity: 0.45; }
.orb--blue   { width: 380px; height: 380px; background: #3B82F6; top: 40%; left: 45%; opacity: 0.30; }

.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,10,0.55) 0%, rgba(5,6,10,0.85) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.7;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 440px);
  gap: 64px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .player { max-width: 440px; margin: 0 auto; }
}

.hero__copy { max-width: 560px; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero__offer {
  font-size: clamp(13px, 1.3vw, 15px);
  color: rgba(246,246,248,0.5);
  letter-spacing: 0.01em;
  margin-top: -18px;
  margin-bottom: 24px;
}
.hero__sub {
  color: var(--linho-60);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__sub em { color: var(--linho); font-style: italic; }
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__price-tag {
  font-size: 12px;
  color: rgba(246,246,248,0.45);
  text-align: center;
  line-height: 1.4;
}
.hero__price-tag strong { color: #FF5BA8; font-weight: 600; }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--linho-60);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: block;
  width: 22px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--linho-20);
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--linho);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0.4; }
  50%  { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ── PLAYER ───────────────────────────────────────────────────────────────── */
.player {
  position: relative;
  width: 100%;
}
.player__card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20,12,40,0.6) 0%, rgba(10,11,24,0.65) 100%);
  backdrop-filter: blur(20px);
  box-shadow:
    var(--shadow-card),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 0 80px -20px rgba(168,85,247,0.35);
  isolation: isolate;
}
.player__card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,91,168,0.6), rgba(168,85,247,0.2), rgba(59,130,246,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.player__cover {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player__cover-bg {
  position: absolute; inset: 0;
  background: var(--dusk);
}
.player__cover-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.player__cover-glow {
  position: absolute; inset: -40%;
  background: conic-gradient(from 0deg, rgba(255,91,168,0.5), rgba(168,85,247,0.5), rgba(59,130,246,0.5), rgba(255,91,168,0.5));
  filter: blur(40px);
  animation: rot 12s linear infinite;
  opacity: 0.6;
  mix-blend-mode: screen;
}
@keyframes rot { to { transform: rotate(360deg); } }

.player__cover-symbol {
  position: relative;
  z-index: 2;
  width: 42%;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}
.player__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 500;
}

.player__meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.player__titles { flex: 1; min-width: 0; }
.player__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.player__artist {
  font-size: 12px;
  color: var(--linho-60);
  letter-spacing: 0.04em;
}
.player__like {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--linho-60);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.player__like:hover { color: var(--pink); background: var(--linho-06); }

.player__lyric {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--linho-60);
  height: 22px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: opacity 0.5s var(--ease);
}

.player__wave-wrap {
  position: relative;
  height: 56px;
  margin-bottom: 12px;
}
.player__wave {
  display: block;
  width: 100%;
  height: 100%;
}
.player__wave-fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  padding: 0 4px;
}
.player__wave-fallback span {
  flex: 1;
  background: var(--dusk);
  border-radius: 2px;
  height: 30%;
  animation: bar 1.2s var(--ease) infinite alternate;
}
.player__wave-fallback span:nth-child(2n)  { animation-duration: 0.9s; height: 50%; }
.player__wave-fallback span:nth-child(3n)  { animation-duration: 1.1s; height: 70%; }
.player__wave-fallback span:nth-child(5n)  { animation-duration: 1.3s; height: 40%; }
.player__wave-fallback span:nth-child(7n)  { animation-duration: 0.7s; height: 85%; }
@keyframes bar { to { transform: scaleY(1.4); } }

/* mostra fallback se o canvas estiver vazio (sem áudio) */
.player.is-silent .player__wave { display: none; }
.player.is-silent .player__wave-fallback { display: flex; }

.player__progress {
  position: relative;
  height: 4px;
  background: var(--linho-10);
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
  outline: none;
}
.player__progress:focus-visible { box-shadow: 0 0 0 2px rgba(255,91,168,0.6); }
.player__progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--dusk);
  border-radius: 4px;
  pointer-events: none;
}
.player__progress-thumb {
  position: absolute;
  top: 50%; left: 0%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(255,91,168,0.8);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.player__progress:hover .player__progress-thumb { opacity: 1; }

.player__times {
  display: flex; justify-content: space-between;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--linho-40);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.player__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
}
.player__ctrl {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--linho-60);
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.player__ctrl:hover { color: var(--linho); background: var(--linho-06); }
.player__ctrl:active { transform: scale(0.94); }

.player__play {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dusk);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(255,91,168,0.7), inset 0 0 0 1px rgba(255,255,255,0.18);
  transition: transform 0.3s var(--ease);
}
.player__play:hover { transform: scale(1.05); }
.player__play:active { transform: scale(0.96); }
.player__play-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,91,168,0.5);
  opacity: 0;
  pointer-events: none;
}
.player.is-playing .player__play-ring {
  opacity: 1;
  animation: ripple 1.8s var(--ease) infinite;
}
@keyframes ripple {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0;   }
}

.player__play .player__play-icon  { display: block; margin-left: 3px; }
.player__play .player__pause-icon { display: none; }
.player.is-playing .player__play .player__play-icon  { display: none; }
.player.is-playing .player__play .player__pause-icon { display: block; }

.player__caption {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--linho-40);
}

/* ── MANIFESTO ────────────────────────────────────────────────────────────── */
.manifesto {
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
}
.manifesto::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 50% at 50% 0%, rgba(168,85,247,0.08), transparent 70%);
  pointer-events: none;
}
.manifesto__title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  position: relative;
}
.manifesto__lead {
  max-width: 640px;
  margin: 0 auto 80px;
  color: var(--linho-60);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  position: relative;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
  position: relative;
}
@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--linho-06);
  box-shadow: inset 0 0 0 1px var(--linho-10);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  background: var(--linho-10);
  box-shadow: inset 0 0 0 1px rgba(255,91,168,0.35), 0 20px 40px -20px rgba(168,85,247,0.4);
}
.pillar__glyph {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--dusk);
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px -6px rgba(255,91,168,0.5);
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 6px;
}
.pillar p {
  color: var(--linho-60);
  font-size: 14px;
  line-height: 1.55;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.how { padding: 120px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,12,40,0.4), rgba(10,11,24,0.6));
  box-shadow: inset 0 0 0 1px var(--linho-10);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(168,85,247,0.4), 0 24px 50px -24px rgba(168,85,247,0.5);
}
.step__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--linho-40);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.step__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--linho-06);
  color: var(--linho);
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px var(--linho-10), 0 0 30px -10px rgba(255,91,168,0.4);
}
.step h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 10px;
}
.step p {
  color: var(--linho-60);
  font-size: 14px;
  line-height: 1.6;
}

.how__note {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linho-60);
}
.how__note strong { color: var(--linho); font-weight: 500; }

/* ── PROOF / REELS ────────────────────────────────────────────────────────── */
.proof { padding: 120px 0; position: relative; }
.proof::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 50%, rgba(255,91,168,0.06), transparent 70%);
  pointer-events: none;
}
.reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 980px) { .reels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .reels { grid-template-columns: 1fr 1fr; gap: 14px; } }

.reel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.6s var(--ease);
}
.reel:hover { transform: translateY(-6px) scale(1.01); }
.reel__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background: var(--grad, linear-gradient(180deg, #1a1845, #05060A));
  padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--linho-10);
  overflow: hidden;
}
.reel__media::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.reel__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--dusk);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 24px rgba(255,91,168,0.5);
}
.reel__quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative; z-index: 2;
}
.reel__quote em {
  background: var(--dusk);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reel__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  color: var(--linho-60);
  letter-spacing: 0.08em;
  position: relative; z-index: 2;
}

/* ── MOMENTS ──────────────────────────────────────────────────────────────── */
.moments { padding: 120px 0; }
.moments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .moments__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .moments__grid { grid-template-columns: 1fr; } }

.moment {
  position: relative;
  display: block;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--linho-06);
  box-shadow: inset 0 0 0 1px var(--linho-10);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
}
.moment::after {
  content: ""; position: absolute; inset: -2px;
  background: var(--dusk);
  opacity: 0;
  border-radius: var(--radius);
  filter: blur(40px);
  z-index: -1;
  transition: opacity 0.5s var(--ease);
}
.moment:hover {
  transform: translateY(-4px);
  background: var(--linho-10);
  box-shadow: inset 0 0 0 1px rgba(255,91,168,0.35);
}
.moment:hover::after { opacity: 0.3; }
.moment__glyph {
  display: inline-flex;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--linho);
  margin-bottom: 14px;
  background: var(--dusk);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.moment h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 6px;
}
.moment p {
  color: var(--linho-60);
  font-size: 13px;
  line-height: 1.5;
}
.moment--featured {
  background: linear-gradient(180deg, rgba(255,91,168,0.08), rgba(59,130,246,0.06));
  box-shadow: inset 0 0 0 1px rgba(255,91,168,0.3);
}
.moment--featured::after { opacity: 0.18; }

/* ── PLANS ────────────────────────────────────────────────────────────────── */
.plans { padding: 120px 0; position: relative; }
.plans::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 50% at 50% 30%, rgba(168,85,247,0.08), transparent 70%);
  pointer-events: none;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 980px) { .plans__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.plan {
  position: relative;
  padding: 36px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20,12,40,0.5), rgba(10,11,24,0.7));
  box-shadow: inset 0 0 0 1px var(--linho-10), var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px var(--linho-20), 0 30px 60px -20px rgba(0,0,0,0.6);
}
.plan--featured {
  background: linear-gradient(180deg, rgba(40,16,60,0.7), rgba(15,12,30,0.85));
  box-shadow: inset 0 0 0 1px rgba(255,91,168,0.4), 0 30px 80px -20px rgba(255,91,168,0.5);
  transform: scale(1.02);
}
@media (min-width: 981px) {
  .plan--featured { transform: scale(1.04); }
  .plan--featured:hover { transform: scale(1.04) translateY(-6px); }
}
.plan__ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--dusk);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px -6px rgba(255,91,168,0.7);
  white-space: nowrap;
}
.plan__head { margin-bottom: 20px; }
.plan__name {
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-style: italic;
}
.plan--featured .plan__name {
  background: var(--dusk);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.plan__tag {
  color: var(--linho-60);
  font-size: 13px;
  line-height: 1.4;
}
.plan__price {
  display: flex; align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--linho-10);
}
.plan__currency {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--linho-60);
}
.plan__amount {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.plan__feats {
  flex: 1;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.plan__feats li {
  font-size: 14px;
  color: var(--linho-60);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.plan__feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dusk);
  box-shadow: 0 0 10px rgba(255,91,168,0.5);
}
.plan__feats li strong { color: var(--linho); font-weight: 500; }

.addons {
  margin-top: 56px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--linho-06);
  box-shadow: inset 0 0 0 1px var(--linho-10);
  text-align: center;
}
.addons__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--linho-60);
  margin-bottom: 14px;
}
.addons__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 14px;
}
.addons__list li {
  font-size: 13px;
  color: var(--linho-60);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--linho-06);
  box-shadow: inset 0 0 0 1px var(--linho-10);
}

/* ── GARANTIA ─────────────────────────────────────────────────────────────── */
.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 32px;
  border-radius: var(--radius);
  background: linear-gradient(115deg, rgba(255,91,168,.06) 0%, rgba(168,85,247,.06) 50%, rgba(59,130,246,.06) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,91,168,.2);
}
.guarantee__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,91,168,.08);
}
.guarantee__text { display: flex; flex-direction: column; gap: 4px; }
.guarantee__text strong {
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(115deg, var(--saudade), var(--aurora));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.guarantee__text p {
  font-size: 13px;
  color: var(--linho-60);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 600px) {
  .guarantee { flex-direction: column; text-align: center; padding: 20px; }
}

/* ── DELIVERY (BENTO) ─────────────────────────────────────────────────────── */
.delivery { padding: 120px 0; }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
@media (max-width: 880px) { .bento { grid-template-columns: repeat(2, 1fr); } }

.bento__cell {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,12,40,0.4), rgba(10,11,24,0.6));
  box-shadow: inset 0 0 0 1px var(--linho-10);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.bento__cell:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(168,85,247,0.3);
}
.bento__cell--big {
  grid-column: span 2; grid-row: span 2;
}
.bento__cell--wide { grid-column: span 2; }
@media (max-width: 880px) {
  .bento__cell--big { grid-column: span 2; grid-row: auto; }
}

.bento__tag {
  margin-top: auto;
  padding-top: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--linho-60);
}
.bento__caption {
  padding-top: 18px;
}
.bento__caption h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 6px;
}
.bento__caption p { color: var(--linho-60); font-size: 14px; line-height: 1.55; }

/* mocks */
.bento__page-mock {
  flex: 1;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15,8,30,0.9), rgba(8,9,18,1));
  padding: 18px;
  box-shadow: inset 0 0 0 1px var(--linho-10);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}
.bento__page-cover {
  width: 90px; height: 90px;
  border-radius: 12px;
  background: var(--dusk);
  box-shadow: 0 12px 24px -8px rgba(255,91,168,0.5);
}
.bento__page-meta { display: flex; flex-direction: column; gap: 8px; }
.bento__bar {
  height: 8px;
  border-radius: 4px;
  background: var(--linho-10);
}
.bento__bar--lg { width: 70%; background: var(--dusk); opacity: 0.8; }
.bento__bar--sm { width: 40%; }
.bento__page-wave {
  margin-top: auto;
  display: flex; align-items: flex-end; gap: 3px;
  height: 50px;
}
.bento__page-wave span {
  flex: 1;
  background: var(--dusk);
  border-radius: 2px;
  opacity: 0.7;
}
.bento__page-wave span:nth-child(1)  { height: 25%; }
.bento__page-wave span:nth-child(2)  { height: 50%; }
.bento__page-wave span:nth-child(3)  { height: 70%; }
.bento__page-wave span:nth-child(4)  { height: 40%; }
.bento__page-wave span:nth-child(5)  { height: 85%; }
.bento__page-wave span:nth-child(6)  { height: 60%; }
.bento__page-wave span:nth-child(7)  { height: 30%; }
.bento__page-wave span:nth-child(8)  { height: 55%; }
.bento__page-wave span:nth-child(9)  { height: 75%; }
.bento__page-wave span:nth-child(10) { height: 45%; }
.bento__page-wave span:nth-child(11) { height: 65%; }
.bento__page-wave span:nth-child(12) { height: 35%; }
.bento__page-wave span:nth-child(13) { height: 80%; }
.bento__page-wave span:nth-child(14) { height: 50%; }
.bento__page-wave span:nth-child(15) { height: 60%; }
.bento__page-wave span:nth-child(16) { height: 40%; }
.bento__page-wave span:nth-child(17) { height: 70%; }
.bento__page-wave span:nth-child(18) { height: 30%; }
.bento__page-wave span:nth-child(19) { height: 55%; }
.bento__page-wave span:nth-child(20) { height: 45%; }

.bento__cover-mock {
  position: relative;
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
}
.bento__cover-art {
  position: absolute; inset: 0;
  background: var(--dusk);
}
.bento__cover-art::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.bento__cover-badge {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
}

.bento__reel-mock {
  position: relative;
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  background: linear-gradient(180deg, #2a1240, #05060A);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px var(--linho-10);
}
.bento__reel-bars {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; align-items: flex-end; gap: 4px;
  height: 40px;
}
.bento__reel-bars span {
  flex: 1; background: #fff; border-radius: 2px; opacity: 0.8;
}
.bento__reel-bars span:nth-child(1) { height: 35%; }
.bento__reel-bars span:nth-child(2) { height: 65%; }
.bento__reel-bars span:nth-child(3) { height: 90%; }
.bento__reel-bars span:nth-child(4) { height: 45%; }
.bento__reel-bars span:nth-child(5) { height: 70%; }
.bento__reel-bars span:nth-child(6) { height: 30%; }
.bento__reel-play {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--eclipse);
  display: flex; align-items: center; justify-content: center;
  padding-left: 3px;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.bento__qr-mock {
  flex: 1;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
}
.bento__qr {
  width: 100%; aspect-ratio: 1 / 1;
  max-width: 140px;
  background-image:
    linear-gradient(#000 0 0), linear-gradient(#000 0 0), linear-gradient(#000 0 0),
    radial-gradient(circle at 16% 16%, #000 12%, transparent 13%),
    radial-gradient(circle at 84% 16%, #000 12%, transparent 13%),
    radial-gradient(circle at 16% 84%, #000 12%, transparent 13%),
    repeating-linear-gradient(90deg, #000 0 4px, transparent 4px 8px),
    repeating-linear-gradient(0deg, #000 0 4px, transparent 4px 8px);
  background-size:
    100% 4px, 100% 4px, 4px 100%,
    32% 32%, 32% 32%, 32% 32%,
    50% 50%, 50% 50%;
  background-position:
    0 0, 0 100%, 0 0,
    0 0, 100% 0, 0 100%,
    50% 50%, 50% 50%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
}

.bento__pdf-mock {
  flex: 1;
  border-radius: 14px;
  background: linear-gradient(180deg, #f6f6f8, #e8e8ee);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 180px;
}
.bento__pdf-line {
  height: 8px;
  border-radius: 3px;
  background: rgba(5,6,10,0.18);
}
.bento__pdf-line--short { width: 65%; }

.bento__kit {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-height: 140px;
}
.bento__kit-card {
  border-radius: 8px;
  background: var(--dusk);
  opacity: 0.85;
}
.bento__kit-card:nth-child(2) { background: linear-gradient(180deg, #2a1240, #05060A); opacity: 1; box-shadow: inset 0 0 0 1px var(--linho-20); }
.bento__kit-card:nth-child(3) { background: linear-gradient(115deg, #3B82F6, #A855F7); }
.bento__kit-card:nth-child(4) { background: linear-gradient(180deg, #1a1845, #05060A); opacity: 1; box-shadow: inset 0 0 0 1px var(--linho-20); }

.delivery__quote {
  text-align: center;
  margin-top: 56px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--linho-60);
}
.delivery__quote em {
  color: var(--linho);
  background: var(--dusk);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ── STYLES (music styles) ────────────────────────────────────────────────── */
.styles { padding: 120px 0; }
.styles__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.style {
  position: relative;
  padding: 14px 20px 14px 50px;
  border-radius: var(--radius-pill);
  background: var(--linho-06);
  color: var(--linho);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px var(--linho-10);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
  overflow: hidden;
}
.style:hover {
  transform: translateY(-2px);
  background: var(--linho-10);
  box-shadow: inset 0 0 0 1px rgba(255,91,168,0.4), 0 12px 30px -10px rgba(255,91,168,0.4);
}
.eq {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: flex-end;
  gap: 2px;
  height: 18px;
}
.eq span {
  width: 3px;
  background: var(--dusk);
  border-radius: 2px;
  height: 30%;
  transition: height 0.3s var(--ease);
}
.style:hover .eq span { animation: eqBar 0.9s var(--ease) infinite alternate; }
.style:hover .eq span:nth-child(1) { animation-delay: 0s;    }
.style:hover .eq span:nth-child(2) { animation-delay: 0.1s;  }
.style:hover .eq span:nth-child(3) { animation-delay: 0.2s;  }
.style:hover .eq span:nth-child(4) { animation-delay: 0.05s; }
.style:hover .eq span:nth-child(5) { animation-delay: 0.15s; }
@keyframes eqBar {
  0%   { height: 25%; }
  100% { height: 95%; }
}

/* ── FINAL CTA ────────────────────────────────────────────────────────────── */
.final {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  isolation: isolate;
}
.final__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background: radial-gradient(80% 60% at 50% 50%, #0a0c18 0%, #05060A 70%);
}
.final__orb-1 { top: 10%; left: -10%; }
.final__orb-2 { bottom: -20%; right: -10%; }
.final__inner { text-align: center; position: relative; }
.final__title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.final__sub {
  color: var(--linho-60);
  font-size: clamp(15px, 1.4vw, 18px);
  margin-bottom: 44px;
}
.final__hint {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--linho-40);
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { padding: 60px 0 32px; border-top: 1px solid var(--linho-06); }
.footer__inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer__brand img { height: 28px; margin-bottom: 14px; }
.footer__brand p { font-family: var(--serif); font-style: italic; color: var(--linho-60); }
.footer__nav { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__nav h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linho-40);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__nav a {
  display: block;
  font-size: 14px;
  color: var(--linho-60);
  margin-bottom: 8px;
  transition: color 0.3s var(--ease);
}
.footer__nav a:hover { color: var(--linho); }
.footer__copy {
  text-align: center;
  font-size: 12px;
  color: var(--linho-40);
  letter-spacing: 0.04em;
}
.footer__policy {
  text-align: center;
  font-size: 11px;
  color: var(--linho-30);
  letter-spacing: 0.03em;
  margin-top: 6px;
}

/* ── MINI PLAYER ──────────────────────────────────────────────────────────── */
.mini {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 80;
  max-width: 420px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 16px;
  background: rgba(10,11,24,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8), inset 0 0 0 1px var(--linho-10);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.mini.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mini__cover {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--dusk);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(255,91,168,0.5);
}
.mini__cover svg { width: 26px; }
.mini__meta { flex: 1; min-width: 0; }
.mini__title {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini__artist {
  font-size: 11px;
  color: var(--linho-60);
  margin-bottom: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini__progress {
  height: 3px;
  background: var(--linho-10);
  border-radius: 3px;
  overflow: hidden;
}
.mini__progress div {
  height: 100%;
  width: 0%;
  background: var(--dusk);
}
.mini__play {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dusk);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(255,91,168,0.6);
  transition: transform 0.3s var(--ease);
}
.mini__play:hover { transform: scale(1.05); }
.mini__play .mini__play-icon  { display: block; margin-left: 2px; }
.mini__play .mini__pause-icon { display: none; }
.mini.is-playing .mini__play .mini__play-icon  { display: none; }
.mini.is-playing .mini__play .mini__pause-icon { display: block; margin-left: 0; }

/* ── FLOATING WHATSAPP ────────────────────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(10,11,24,0.85);
  backdrop-filter: blur(14px);
  color: var(--linho);
  font-size: 13px;
  font-weight: 500;
  box-shadow:
    0 10px 30px -10px rgba(255,91,168,0.6),
    inset 0 0 0 1px rgba(255,91,168,0.3);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.float-wa::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: var(--radius-pill);
  padding: 1px;
  background: var(--dusk);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}
.float-wa svg { color: var(--pink); }
.float-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(255,91,168,0.8), inset 0 0 0 1px rgba(255,91,168,0.5);
}

/* mini player ativo → empurra o float-wa pra cima pra não sobrepor */
body.mini-active .float-wa { bottom: 88px; }

/* ── LIVE BADGE & SCARCITY ────────────────────────────────────────────────── */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.7);
  animation: livePulse 1.8s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes livePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 10px rgba(34,197,94,0.7); }
  50%      { opacity: 0.7; box-shadow: 0 0 20px rgba(34,197,94,1); }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(34,197,94,0.08);
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.25);
  font-size: 12px;
  color: rgba(34,197,94,0.9);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  width: fit-content;
}
.live-badge #live-count {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.4s var(--ease);
}

.scarcity-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(34,197,94,0.06);
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.2);
  font-size: 12px;
  color: rgba(34,197,94,0.85);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.scarcity-sep { opacity: 0.5; }

/* ── KISHŌTENKETSU COPY LINES ─────────────────────────────────────────────── */
.hero__sub {
  margin-bottom: 32px;
}
.kiku {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.65;
  margin: 0 0 6px;
  color: var(--linho-60);
}
.kiku--ki   { color: var(--linho-60); }
.kiku--sho  { color: var(--linho-60); }
.kiku--ten  { color: var(--linho); font-family: var(--serif); font-size: clamp(17px, 1.5vw, 20px); font-style: italic; margin: 8px 0; }
.kiku--ten em { background: var(--dusk); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kiku--ketsu { color: var(--linho-60); }
.kiku--ketsu strong { color: var(--linho); font-weight: 600; }

/* ── PLAYER STICKER (incentivo de clique) ─────────────────────────────────── */
.player__sticker {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--linho-60);
  animation: stickerFloat 2.4s var(--ease) infinite;
}
.player__sticker em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--linho);
  background: var(--dusk);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.player__sticker-arrow {
  display: inline-block;
  margin-right: 6px;
  font-size: 16px;
  animation: arrowBounce 1.2s var(--ease) infinite alternate;
  background: var(--dusk);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes arrowBounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-5px); }
}
@keyframes stickerFloat {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.7; }
}
/* esconde o sticker depois que o áudio toca uma vez */
.player.is-playing .player__sticker,
.player.was-played .player__sticker { display: none; }

/* ── GLOW EXTRA NO PLAY BUTTON (chama atenção antes do primeiro clique) ────── */
.player__play.is-idle {
  box-shadow: 0 12px 30px -8px rgba(255,91,168,0.7), inset 0 0 0 1px rgba(255,255,255,0.18), 0 0 40px rgba(255,91,168,0.6);
  animation: idleGlow 2s var(--ease) infinite;
}
@keyframes idleGlow {
  0%,100% { box-shadow: 0 12px 30px -8px rgba(255,91,168,0.7), 0 0 30px rgba(255,91,168,0.5); }
  50%     { box-shadow: 0 12px 30px -8px rgba(168,85,247,0.8), 0 0 60px rgba(168,85,247,0.7); }
}

/* ── STYLE PILL — variação "outro estilo" ─────────────────────────────────── */
.style--ask {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255,91,168,0.3);
  color: var(--linho-60);
  font-style: italic;
}
.style--ask:hover {
  background: rgba(255,91,168,0.06);
  color: var(--linho);
  box-shadow: inset 0 0 0 1px rgba(255,91,168,0.6);
}

/* ── BENTO: SPOTIFY MOCK ──────────────────────────────────────────────────── */
.bento__spotify-mock {
  flex: 1;
  border-radius: 14px;
  background: #121212;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.bento__spotify-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 140px;
  background: var(--dusk);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bento__spotify-glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,0.25), transparent);
}
.bento__spotify-info {
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bento__spotify-badge {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.bento__spotify-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bento__spotify-artist {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.bento__spotify-bar {
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 8px 0 4px;
  position: relative;
  overflow: hidden;
}
.bento__spotify-bar span {
  display: block;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38%;
  background: #1DB954;
  border-radius: 3px;
}
.bento__spotify-times {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.bento__spotify-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.bento__spotify-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #1DB954;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 2px;
}

/* ── BENTO: INSTAGRAM STORY MOCK ──────────────────────────────────────────── */
.bento__story-mock {
  flex: 1;
  min-height: 200px;
  border-radius: 14px;
  background: linear-gradient(160deg, #1a0830, #05060A 60%, #0a1030);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px var(--linho-10), 0 8px 24px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.bento__story-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,91,168,0.12) 0%, transparent 40%, rgba(59,130,246,0.08) 100%);
  pointer-events: none;
}
.bento__story-top {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.bento__story-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--dusk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--serif);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255,91,168,0.6);
  flex-shrink: 0;
}
.bento__story-user {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1;
}
.bento__story-time {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.bento__story-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 12px;
  padding: 10px 0;
  position: relative;
}
.bento__story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.bento__story-bottom {
  position: relative;
  text-align: center;
}
.bento__story-swipe {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* respeita usuários que pediram menos motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .orb { display: none; }
}

/* ── RESPONSIVE TWEAKS ────────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .hero { padding: 120px 0 60px; }
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
  .manifesto, .how, .proof, .moments, .plans, .delivery, .styles, .final { padding: 80px 0; }
  .player__card { padding: 18px; }
  .player__cover { aspect-ratio: 1 / 1; }
  .header { padding: 14px 18px; }
  .header__logo img { height: 22px; }
  .header__cta { padding: 8px 14px; font-size: 12px; }
  .float-wa { padding: 10px 14px; font-size: 12px; }
  .float-wa span { display: none; }
  .mini { left: 12px; right: 12px; }
  body.mini-active .float-wa { bottom: 84px; }
}

@media (max-width: 380px) {
  .reels { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MODAL CAPTURA DE DADOS — match quality Meta Pixel
   Aparece no 1.º clique em [data-wa], captura nome + telefone,
   envia hashed para fbq('init') → eleva match quality score.
══════════════════════════════════════════════════════════════════════════ */

.etm-modal {
  /* overlay fixo cobrindo 100% da viewport */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;

  /* backdrop escuro com blur — fica no próprio elemento pai */
  background: rgba(5, 6, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  /* estado fechado */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.etm-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* div de backdrop não é mais necessário visualmente — mantido só pro JS */
.etm-modal__backdrop { display: none; }

.etm-modal__box {
  width: 100%;
  max-width: 420px;
  background: #0c0d13;
  border: 1px solid rgba(246,246,248,0.1);
  border-radius: 22px;
  padding: 38px 32px 28px;
  box-shadow:
    0 0 0 1px rgba(255,91,168,0.08),
    0 32px 80px -20px rgba(0,0,0,0.9);

  /* animação de entrada */
  transform: translateY(24px) scale(0.97);
  transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.etm-modal.is-open .etm-modal__box {
  transform: translateY(0) scale(1);
}

.etm-modal__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.etm-modal__title {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.12;
  color: var(--linho);
  margin-bottom: 12px;
}
.etm-modal__title em { font-style: normal; }

.etm-modal__sub {
  font-size: 14px;
  color: var(--linho-60);
  line-height: 1.55;
  margin-bottom: 26px;
}

.etm-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.etm-modal__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.etm-modal__field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(246,246,248,0.1);
  background: rgba(246,246,248,0.04);
  color: var(--linho);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}
.etm-modal__field input::placeholder {
  color: rgba(246,246,248,0.22);
}
.etm-modal__field input:focus {
  border-color: rgba(255,91,168,0.45);
  background: rgba(246,246,248,0.06);
}

.etm-modal__hint {
  font-size: 11px;
  color: var(--linho-40);
  padding-left: 2px;
}

.etm-modal__cta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--dusk);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.etm-modal__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(168,85,247,0.55);
}
.etm-modal__cta:active {
  transform: translateY(0);
  opacity: 1;
}

.etm-modal__privacy {
  font-size: 11px;
  color: var(--linho-40);
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .etm-modal__box { padding: 28px 22px 24px; border-radius: 18px; }
  .etm-modal__title { font-size: 28px; }
}
