:root {
  --bg: #ffffff;
  --page: #f6f7f9;
  --ink: #152238;
  --muted: #68758e;
  --line: #e8ebf1;
  --navy: #111c31;
  --gold: #bd8a2d;
  --gold-2: #d2a64b;
  --green: #40d56b;
  --soft-gold: #f6efe2;
  --shadow: 0 18px 48px rgba(17, 28, 49, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.bio-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 18px 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #f8f9fb 100%);
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 18px;
}

.avatar {
  width: 118px;
  height: 118px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
  box-shadow: 0 14px 40px rgba(17, 28, 49, 0.18);
}

h1,
h2,
p {
  margin: 0;
}

.profile h1 {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.handle {
  margin-top: 5px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 850;
}

.profile .bio-copy {
  max-width: 320px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.site-card {
  min-height: 94px;
  display: grid;
  grid-template-columns: 58px 1fr 20px;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.site-card:hover {
  border-color: rgba(189, 138, 45, 0.45);
  transform: translateY(-2px);
}

.site-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 850;
}

.site-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.spotify-card {
  position: relative;
  min-height: 122px;
  display: grid;
  grid-template-columns: 82px 1fr 38px;
  align-items: center;
  gap: 15px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 185, 88, 0.42) 0%, rgba(18, 185, 88, 0) 38%),
    linear-gradient(145deg, #07120c 0%, #101914 55%, #050706 100%);
  box-shadow: 0 20px 48px rgba(3, 11, 7, 0.24);
  overflow: hidden;
}

.spotify-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.spotify-art {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

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

.spotify-content,
.spotify-play {
  position: relative;
  z-index: 1;
}

.spotify-label {
  width: max-content;
  display: block;
  margin-bottom: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #1ed760;
  background: rgba(30, 215, 96, 0.13);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.spotify-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 900;
}

.spotify-card small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.2;
}

.spotify-play {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07120c;
  background: #1ed760;
  box-shadow: 0 10px 22px rgba(30, 215, 96, 0.26);
}

.spotify-play svg {
  width: 24px;
  height: 24px;
}

.concierge {
  margin-top: 4px;
}

.concierge-trigger {
  position: relative;
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr 38px;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border: 0;
  border-radius: 27px;
  color: #fff;
  background:
    linear-gradient(135deg, #020204 0%, #0f1014 55%, #17110b 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  animation: conciergePulse 2.6s ease-in-out infinite;
}

.concierge-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.12) 42%, transparent 70%);
  animation: conciergeShine 3.9s ease-in-out infinite;
}

.trigger-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.trigger-icon svg {
  width: 26px;
  height: 26px;
}

.concierge-trigger strong {
  display: block;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 850;
}

.concierge-trigger small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.32;
}

.trigger-arrow {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.14);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wizard {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 0 0 18px;
}

.wizard-progress span {
  height: 5px;
  border-radius: 999px;
  background: #e4e8ef;
}

.wizard-progress span.is-active {
  background: var(--gold);
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.question-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.wizard-step h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.16;
  font-weight: 850;
}

.choices {
  display: grid;
  gap: 8px;
}

.choices button {
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.choices button:hover,
.choices button.is-selected {
  border-color: var(--gold);
  background: #fbf5e8;
  transform: translateY(-1px);
}

.wizard-result {
  padding: 16px;
  border: 1px solid rgba(189, 138, 45, 0.24);
  border-radius: 18px;
  background: #fff8ec;
}

.wizard-result span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.wizard-result h2 {
  margin: 7px 0 5px;
  font-size: 22px;
  line-height: 1.15;
}

.wizard-result p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.wizard-result a,
.wizard-result button {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.wizard-result a {
  color: #fff;
  background: var(--navy);
}

.wizard-result button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.products {
  margin-top: 24px;
}

.products > h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.products > h2::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid rgba(189, 138, 45, 0.32);
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 156px;
  gap: 16px;
  margin-inline: -18px;
  padding: 0 18px 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
}

.cover {
  position: relative;
  height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(17, 28, 49, 0.18);
}

.cover::before,
.cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cover::before {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0,0,0,0.62) 100%),
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.34), transparent 28%);
}

.cover::after {
  width: 58px;
  height: 88px;
  right: 14px;
  top: 18px;
  border-radius: 7px 3px 3px 7px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
  box-shadow:
    -8px 8px 20px rgba(0,0,0,0.18),
    inset 4px 0 rgba(0,0,0,0.12);
  transform: rotate(5deg);
}

.cover-tag,
.cover strong,
.cover small {
  position: relative;
  z-index: 1;
}

.cover-tag {
  width: max-content;
  margin-bottom: auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.cover strong {
  display: block;
  margin-top: 26px;
  font-size: 21px;
  line-height: 0.95;
  font-weight: 900;
}

.cover small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1.2;
}

.cover-ebook {
  background:
    linear-gradient(135deg, #f6f0e4 0%, #cfa24f 50%, #111c31 100%);
}

.cover-mapa {
  background:
    linear-gradient(145deg, #f8f2e7 0%, #bd8a2d 42%, #101a2f 100%);
}

.cover-cripto {
  background:
    linear-gradient(145deg, #07161c 0%, #163b55 48%, #33c7a5 100%);
}

.cover-caixa {
  background:
    linear-gradient(145deg, #17243c 0%, #39506e 54%, #be8b2e 100%);
}

.cover-dividendos {
  background:
    linear-gradient(145deg, #0d1a19 0%, #25473b 52%, #c6a253 100%);
}

.cover-mentoria {
  background:
    linear-gradient(145deg, #111827 0%, #2d3344 48%, #d2a64b 100%);
}

.cover-ia {
  background:
    linear-gradient(145deg, #0d1324 0%, #263b68 52%, #8ba7ff 100%);
}

.cover-comunidade {
  background:
    linear-gradient(145deg, #221824 0%, #5d3c50 52%, #d0a044 100%);
}

.product-title {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.18;
  font-weight: 850;
}

.product-action {
  width: max-content;
  display: block;
  margin-top: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: #020204;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.whatsapp-card {
  min-height: 94px;
  display: grid;
  grid-template-columns: 58px 1fr 20px;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.bottom-whatsapp {
  margin-top: 22px;
}

.whatsapp-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 850;
}

.whatsapp-card small {
  display: block;
  margin-top: 6px;
  color: #b7c1d3;
  font-size: 14px;
  line-height: 1.25;
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 18px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.12);
}

.icon-site {
  color: var(--gold);
  background: var(--soft-gold);
}

.chevron {
  width: 22px;
  height: 22px;
  color: rgba(17, 28, 49, 0.38);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-card .chevron {
  color: rgba(255, 255, 255, 0.7);
}

footer {
  padding: 24px 0 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

footer strong {
  color: var(--gold);
}

@keyframes conciergePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.01);
  }
}

@keyframes conciergeShine {
  0%, 38% {
    transform: translateX(-110%);
  }
  62%, 100% {
    transform: translateX(110%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .concierge-trigger,
  .concierge-trigger::after {
    animation: none;
  }
}

@media (max-width: 380px) {
  .bio-shell {
    padding-inline: 14px;
  }

  .product-rail {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .concierge-trigger {
    grid-template-columns: 52px 1fr 34px;
    padding: 17px 15px;
  }

  .concierge-trigger strong,
  .whatsapp-card strong {
    font-size: 18px;
  }
}
