:root {
  --bg: #050508;
  --bg-2: #0b0b12;
  --card: #12121a;
  --line: rgba(255, 255, 255, 0.09);
  --pink: #ff2d95;
  --cyan: #00e5ff;
  --purple: #9b5cff;
  --gold: #c4a35a;
  --gold-2: #e8d5a3;
  --text: #f6f4f0;
  --muted: #9a96a8;
  --danger: #ff6b81;
  --ok: #3ee0b0;
  --header: 72px;
  --grad: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  --gold-line: linear-gradient(90deg, transparent, var(--gold), transparent);
  --font-display: "Cinzel", serif;
  --font: "Outfit", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --radius: 16px;
  --touch: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 40% at 0% -10%, rgba(255, 45, 149, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(0, 229, 255, 0.1), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(155, 92, 255, 0.08), transparent 40%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

#root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 8, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.45), 0 0 18px rgba(255, 45, 149, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-name small {
  display: block;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  font-weight: 400;
}

.nav {
  display: none;
  margin-left: auto;
  gap: 2px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav a.cta {
  background: var(--grad);
  color: #0a0a10;
  font-weight: 650;
  padding: 10px 16px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.header-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }
  .header-actions {
    margin-left: 8px;
  }
  .brand-name {
    display: block;
  }
  #menuBtn {
    display: none;
  }
}

.icon-btn {
  width: var(--touch);
  height: var(--touch);
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--grad);
  color: #0a0a10;
  font-size: 0.65rem;
  font-weight: 700;
  display: none;
  place-items: center;
}

.cart-count.on {
  display: grid;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0c0c14;
  border-bottom: 1px solid var(--line);
  padding: 8px 16px 16px;
}

.mobile-nav.open {
  display: flex;
}

@media (min-width: 980px) {
  .mobile-nav.open {
    display: none;
  }
}

.mobile-nav a {
  padding: 14px 8px;
  font-size: 1.05rem;
  min-height: var(--touch);
  display: flex;
  align-items: center;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

main.page {
  flex: 1;
  padding-bottom: 48px;
}

.hero {
  text-align: center;
  padding: 28px 0 40px;
}

.hero-logo {
  width: min(280px, 70vw);
  margin: 0 auto 20px;
  position: relative;
}

.hero-logo::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--pink), var(--gold), var(--cyan), var(--purple), var(--pink));
  filter: blur(36px);
  opacity: 0.4;
  z-index: -1;
}

.hero-logo img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--gold-2);
  font-weight: 400;
  line-height: 1.2;
  margin: 6px 0 14px;
}

h1,
h2,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 8px;
}

h2 {
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  margin-bottom: 8px;
}

.gold-rule {
  height: 1px;
  background: var(--gold-line);
  border: 0;
  margin: 12px auto 20px;
  width: min(220px, 50%);
}

.lead {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 24px;
  font-size: 1.02rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--touch);
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 620;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn-primary {
  background: var(--grad);
  color: #07070c;
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(196, 163, 90, 0.45);
}

.btn-gold {
  background: linear-gradient(90deg, #8a6a2a, var(--gold), #e8d5a3);
  color: #1a1408;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.section {
  padding: 12px 0 40px;
}

.section-head {
  margin-bottom: 22px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.grid-4 {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card,
.service-card,
.product-card,
.tiragem-card,
.who-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}

.service-card .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 163, 90, 0.4);
  color: var(--gold);
  font-size: 1.1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.prose {
  color: var(--muted);
  max-width: 68ch;
}

.prose p {
  margin-bottom: 14px;
}

.prose h1,
.prose h2 {
  color: var(--text);
  margin: 22px 0 10px;
  text-transform: none;
  letter-spacing: 0.06em;
}

.portrait {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  border: 1px solid rgba(196, 163, 90, 0.4);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 45, 149, 0.18), transparent 50%),
    #0c0c14;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.2em;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-shot {
  border-radius: 20px;
  border: 1px solid rgba(196, 163, 90, 0.4);
  background: #0c0c14;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.product-shot img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.split {
  display: grid;
  gap: 24px;
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.quote {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--gold-2);
  line-height: 1.35;
  margin: 18px 0;
}

.list-plain {
  color: var(--muted);
  padding-left: 18px;
  margin: 12px 0 18px;
}

.list-plain li {
  margin: 6px 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
}

.chip.on,
.chip:hover {
  color: #0a0a10;
  background: var(--grad);
  border-color: transparent;
}

.price {
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.search {
  width: 100%;
  min-height: var(--touch);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  outline: none;
}

.search:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card .thumb {
  aspect-ratio: 1;
  background: #0c0c14;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.product-card .body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.fields {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .fields.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.span {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: #0a0a10;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 12px;
  min-height: var(--touch);
  outline: none;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.err {
  color: var(--danger);
  font-size: 0.75rem;
  min-height: 1em;
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot {
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.slot.on {
  background: var(--grad);
  color: #0a0a10;
  border-color: transparent;
}

.slot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.who-pick {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .who-pick {
    grid-template-columns: 1fr 1fr;
  }
}

.who-card {
  cursor: pointer;
  text-align: left;
  color: inherit;
  width: 100%;
}

.who-card.on {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.steps {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.steps span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.steps span.on {
  color: var(--gold);
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 16px;
  margin-bottom: 8px;
}

.faq summary {
  min-height: var(--touch);
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 560;
}

.faq details p {
  color: var(--muted);
  padding-bottom: 14px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 16px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img,
.cart-line .ph {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.qty {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.totals {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  color: var(--muted);
}

.totals strong {
  color: var(--text);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.footer a,
.footer p {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--cyan);
}

.legal {
  font-size: 0.75rem;
  color: #6a6778;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--grad);
  color: #07070c;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.4);
}

.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--card);
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  font-size: 0.9rem;
}

.toast.on {
  opacity: 1;
  transform: translateX(-50%);
}

.ok-box {
  text-align: center;
  padding: 48px 16px;
}

.ring {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 3px;
  background: var(--grad);
}

.ring span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  font-size: 1.8rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}

.pay-box {
  display: grid;
  gap: 12px;
  margin: 16px 0 4px;
  padding: 16px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.04);
}

.pay-box p {
  margin: 0;
}

.pay-box strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}

.pay-box span {
  letter-spacing: 0.04em;
  word-break: break-word;
}

.promo-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin: 16px 0 8px;
  flex-wrap: wrap;
}

.promo-row .btn {
  min-height: var(--touch);
}

.tm-session {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tm-who {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tm-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.tm-ava.lg {
  width: 48px;
  height: 48px;
}

#gBtn {
  min-height: 44px;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.4);
  padding: 4px 8px;
  border-radius: 999px;
}
