/* VoiderBox — responsive home prototype */
:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #16161a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --ink: #f4f4f5;
  --ink-muted: #a0a0a8;
  --ink-dim: #6b6b73;
  --gold: oklch(0.78 0.14 65);
  --gold-2: oklch(0.85 0.16 75);
  --gold-soft: oklch(0.78 0.14 65 / 0.12);
  --gold-line: oklch(0.78 0.14 65 / 0.35);
  --radius-card: 18px;
  --radius-btn: 12px;
  --container: 1240px;
  --shadow-gold: 0 0 0 1px var(--gold-line), 0 18px 60px -30px oklch(0.78 0.14 65 / 0.35);

  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", "Helvetica Neue", Helvetica, sans-serif;
  font-feature-settings: "ss01", "ss02";
}

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

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  transition: color 160ms ease;
  position: relative;
  padding: 6px 0;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--gold); }

.header__actions { display: flex; align-items: center; gap: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, box-shadow 200ms ease, color 160ms ease;
  white-space: nowrap;
}
.btn--ghost {
  border: 1px solid var(--gold-line);
  color: var(--gold);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--gold-soft);
  border-color: oklch(0.78 0.14 65 / 0.6);
  box-shadow: 0 0 0 4px oklch(0.78 0.14 65 / 0.06);
}
.btn--primary {
  background: var(--gold);
  color: #1a0e00;
}
.btn--primary:hover { background: var(--gold-2); transform: translateY(-1px); }

.btn--lg {
  padding: 22px 28px;
  font-size: 16px;
  border-radius: 14px;
}

.btn--whatsapp {
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, oklch(0.78 0.14 65 / 0.05), transparent);
  color: var(--gold);
}
.btn--whatsapp:hover { background: var(--gold-soft); }

.iconbtn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background 160ms ease, border-color 160ms ease;
}
.iconbtn:hover { background: rgba(255,255,255,0.04); border-color: var(--line-strong); }

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.logo img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo--footer img { height: 96px; }

@media (max-width: 760px) {
  .logo img { height: 40px; }
  .logo--footer img { height: 80px; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: rgba(10,10,11,0.96);
  backdrop-filter: blur(20px);
  z-index: 40;
  padding: 32px 28px;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.mobile-menu.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu .nav__link {
  font-size: 22px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 20px; justify-content: center; }

/* ============ HERO ============ */
.hero {
  padding: 56px 0 34px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, oklch(0.78 0.14 65 / 0.10), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { max-width: 540px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.hero__title .accent {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  font-feature-settings: "ss01";
}
.hero__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 22px;
  color: var(--gold);
}
.hero__divider .line {
  height: 1px;
  width: 64px;
  background: var(--gold);
}
.hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 18px;
  max-width: 500px;
  text-wrap: pretty;
}
.hero__sub strong { color: var(--gold); font-weight: 500; }

.hero__territories {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  max-width: 540px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0.85;
}
.hero__territories li {
  display: inline-flex;
  align-items: center;
}
.hero__territories li + li::before {
  content: "•";
  margin: 0 10px;
  color: var(--gold);
  opacity: 0.5;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border: 1.5px solid oklch(0.78 0.14 65 / 0.5);
  border-radius: 14px;
  background: linear-gradient(180deg, oklch(0.78 0.14 65 / 0.08), transparent);
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  text-align: left;
}
.hero__cta:hover {
  background: var(--gold-soft);
  border-color: oklch(0.78 0.14 65 / 0.7);
  box-shadow: 0 0 0 6px oklch(0.78 0.14 65 / 0.06);
}
.hero__cta-text { display: flex; flex-direction: column; line-height: 1.1; }
.hero__cta-kicker { font-size: 13px; color: var(--ink-muted); letter-spacing: 0.05em; }
.hero__cta-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.hero__cta-title em { font-style: normal; color: var(--gold); font-weight: 300; font-size: 15px; letter-spacing: 0.1em; }
.hero__cta-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a0e00;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 200ms ease;
}
.hero__cta:hover .hero__cta-arrow { transform: translateX(4px); }

.hero__cta-note {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero__cta-note::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 oklch(0.78 0.14 65 / 0.4); }
  50% { opacity: 1; box-shadow: 0 0 0 6px oklch(0.78 0.14 65 / 0); }
}

.nav__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: oklch(0.78 0.14 65 / 0.06);
  vertical-align: middle;
}

/* Hero media (real maestro photo, with invisible interactive hit targets over play & dots) */
.media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.media__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.media__play-hit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 200ms ease, box-shadow 200ms ease;
}
.media__play-hit:hover {
  background: oklch(0.78 0.14 65 / 0.12);
  box-shadow: 0 0 0 2px oklch(0.78 0.14 65 / 0.4) inset;
}
.media__dots-hit {
  position: absolute;
  left: 0; right: 0;
  bottom: 3%;
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 12px 0;
}
.media__dot-hit {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: transform 160ms ease;
}
.media__dot-hit::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: transparent;
  transition: background 200ms ease;
}
.media__dot-hit:hover::after { background: rgba(255,255,255,0.15); }
.media__dot-hit.is-active::after { background: oklch(0.78 0.14 65 / 0.35); }

/* ============ BENEFITS ============ */
.benefits {
  padding: 28px 0 32px;
  border-top: 1px solid var(--line);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.benefit {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit:last-child { border-right: none; }
.benefit__icon {
  width: 32px; height: 32px;
  color: var(--gold);
  margin-bottom: 4px;
}
.benefit__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
}
.benefit__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
  max-width: 26ch;
}

/* ============ MANIFESTO (O conceito VOID) ============ */
.manifesto {
  padding: 40px 0 48px;
  position: relative;
}
.manifesto__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.manifesto__box {
  border: 1px solid oklch(0.78 0.14 65 / 0.16);
  border-radius: 20px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,0.025), transparent 60%),
    linear-gradient(180deg, #141417 0%, #0f0f12 100%);
  padding: 60px 56px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset;
}
.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.manifesto__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 30px;
}
.manifesto__headline {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 56px;
  color: var(--ink);
  text-wrap: balance;
  max-width: 18ch;
}
.manifesto__accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.manifesto__prose {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
  width: 100%;
}
.manifesto__prose p {
  margin: 0;
  font-size: 20.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  letter-spacing: -0.005em;
  font-weight: 300;
  text-wrap: pretty;
}
.manifesto__prose p em {
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
.manifesto__epigram {
  margin-top: 12px !important;
  font-size: 24px !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  font-weight: 300 !important;
}
.manifesto__rule {
  width: 1px;
  height: 88px;
  background: linear-gradient(180deg, transparent, var(--gold-line), transparent);
  margin: 80px 0 8px;
}
.manifesto__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  padding: 12px 4px;
  color: var(--ink);
  font-size: 14.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 2px solid oklch(0.78 0.14 65 / 0.45);
  transition: color 200ms ease, border-color 200ms ease, gap 200ms ease;
}
.manifesto__cta:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 16px;
}
.manifesto__cta svg { transition: transform 200ms ease; }
.manifesto__cta:hover svg { transform: translateX(2px); }

@media (max-width: 760px) {
  .manifesto { padding: 32px 0 40px; }
  .manifesto__box { padding: 40px 24px; }
  .manifesto__headline { font-size: 32px; margin-bottom: 40px; }
  .manifesto__prose p { font-size: 18px; }
  .manifesto__epigram { font-size: 20px !important; }
  .manifesto__cta { margin-top: 32px; font-size: 13px; }
}

/* ============ VOIDER MEMBER ============ */
.member {
  padding: 16px 0 40px;
}
.member__card {
  position: relative;
  border: 1.5px solid oklch(0.78 0.14 65 / 0.3);
  border-radius: 24px;
  background:
    radial-gradient(80% 60% at 10% 50%, oklch(0.78 0.14 65 / 0.06), transparent 60%),
    linear-gradient(180deg, #0e0e10 0%, #0a0a0b 100%);
  padding: 56px;
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 80px -40px oklch(0.78 0.14 65 / 0.25);
}
.member__portal { position: relative; aspect-ratio: 1 / 1; }
.member__copy { display: flex; flex-direction: column; gap: 18px; }
.member__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.member__title {
  font-size: clamp(32px, 3.4vw, 44px);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.member__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
  max-width: 38ch;
}
.member__what {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 -4px;
  max-width: 38ch;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.member__what strong {
  color: var(--gold);
  font-weight: 500;
}
.member__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.member__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.4;
}
.member__list li > :not(.member__check) {
  flex: 1;
}
.member__list li strong { font-weight: 600; }
.member__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.member__cta {
  margin-top: 28px;
  align-self: flex-start;
  width: 100%;
  max-width: 320px;
  justify-content: space-between;
}

/* ============ ON DEMAND ============ */
.ondemand {
  padding: 16px 0 56px;
}
.ondemand__row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 32px 8px;
}
.ondemand__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ondemand__brand-img {
  display: block;
  height: 110px;
  width: auto;
  object-fit: contain;
}
.ondemand__body { display: flex; flex-direction: column; gap: 14px; }
.ondemand__title {
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ondemand__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* ============ FOOTER ============ */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 8px 0 36px;
}
.divider-ornament .line {
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.footer {
  padding: 0 0 56px;
  text-align: center;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
.footer__text {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  text-wrap: pretty;
}
.footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.footer__meta a { color: var(--ink-muted); transition: color 160ms ease; }
.footer__meta a:hover { color: var(--gold); }
.footer__meta-links { display: flex; gap: 22px; }


.lang-switch{display:inline-flex;align-items:center;gap:9px;font-family:"JetBrains Mono",ui-monospace,monospace;font-size:12px;letter-spacing:.12em;}
.lang-switch__opt{color:var(--ink-dim);transition:color 160ms ease;padding:2px 1px;text-decoration:none;}
.lang-switch__opt:hover{color:var(--ink);}
.lang-switch__opt.is-active{color:var(--gold);}
.lang-switch__sep{color:var(--line-strong);}
.case-topbar__row .lang-switch{margin-left:18px;}

/* ============ DESKTOP / TABLET / MOBILE ============ */
@media (max-width: 1100px) {
  .header__actions .btn--ghost { display: none; }
  .nav { display: none; }
}

@media (max-width: 960px) {
  .member__card {
    grid-template-columns: 240px 1fr;
    padding: 40px;
    gap: 32px;
  }
  .member__list { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--line); }
  .ondemand__row { grid-template-columns: 100px 1fr; gap: 28px; }
  .ondemand__brand-img { height: 80px; }
  .ondemand__row .btn { grid-column: 2 / 3; justify-self: flex-start; }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .header__row { height: 64px; }
  .mobile-menu { inset: 64px 0 0 0; }
  .hero { padding: 36px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { order: 1; }
  .media { order: 2; }
  .hero__divider { margin: 28px 0 22px; }
  .hero__sub { font-size: 16px; margin-bottom: 32px; }
  .hero__cta { width: 100%; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 4px;
  }
  .benefit:last-child { border-bottom: none; }
  .member__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
    text-align: left;
  }
  .member__portal { max-width: 200px; margin: 0 auto; }
  .member__cta { max-width: 100%; }
  .ondemand__row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 4px;
  }
  .ondemand__brand { justify-content: flex-start; }
  .ondemand__brand-img { height: 76px; }
  .ondemand__row .btn { grid-column: auto; width: 100%; justify-content: center; }
  .footer__meta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 44px; }
  .hero__cta-title { font-size: 20px; }
  .media__play { width: 72px; height: 72px; }
  .member__title { font-size: 28px; }
}

/* Particles animation */
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.particle { animation: twinkle 3.5s ease-in-out infinite; }

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 8px oklch(0.78 0.14 65 / 0.5)); }
  50% { filter: drop-shadow(0 0 18px oklch(0.78 0.14 65 / 0.8)); }
}
.portal-ring { animation: glow 4s ease-in-out infinite; }
