/* =====================================================================
   Carta Canalizada — Karyne Rezende
   Design: místico / tarô / amor. Mobile-first.
   ===================================================================== */
:root {
  --bg: #0a0819;
  --bg-2: #0f0c26;
  --panel: #171233;
  --panel-2: #1e1840;
  --line: rgba(230, 195, 122, 0.18);
  --gold: #e6c37a;
  --gold-2: #c9a24f;
  --gold-soft: rgba(230, 195, 122, 0.12);
  --rose: #e39ab4;
  --text: #f2edf9;
  --muted: #b3a9cd;
  --ok: #5fce93;
  --danger: #e2708a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fundo celestial */
.stars {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 50% -10%, #241a4d 0%, rgba(20, 15, 45, 0) 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(120, 70, 160, 0.18), transparent 60%),
    linear-gradient(180deg, #0b0920 0%, #0a0819 100%);
}
.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 60% 85%, rgba(255,255,255,.55), transparent);
  opacity: .6;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .35; } to { opacity: .7; } }

.wrap { width: 100%; max-width: 620px; margin: 0 auto; padding: 0 18px; }

/* Top bar */
.topbar {
  text-align: center;
  padding: 22px 18px 8px;
}
.brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--gold);
}
.logo-emblem {
  width: 128px; height: auto; display: block; margin: 0 auto 2px;
  filter: drop-shadow(0 6px 18px rgba(230,195,122,.28));
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.divider-moon {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--gold-2); font-size: 14px; margin: 14px 0 4px;
}
.divider-moon::before, .divider-moon::after {
  content: ""; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.divider-moon::after { transform: scaleX(-1); }

/* Hero */
.hero { text-align: center; padding: 8px 0 4px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 7vw, 40px);
  line-height: 1.12;
  letter-spacing: .3px;
  margin: 6px 0 10px;
}
.hero h1 .hl { color: var(--gold); }
.hero .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 6px;
}
.hero .lead b { color: var(--rose); font-weight: 600; }

/* VSL */
.vsl {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 18px auto 8px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--line), 0 0 40px rgba(230,195,122,.12);
  aspect-ratio: 9 / 16;
  background: #000;
}
.vsl video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsl .poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  cursor: pointer;
}
.vsl .poster::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,0) 30%, rgba(5,3,15,.55) 100%);
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(230,195,122,.92);
  display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.5), 0 0 0 10px rgba(230,195,122,.18);
  animation: pulse 2s infinite;
  z-index: 2;
}
.play-btn::before {
  content: ""; margin-left: 5px;
  border-style: solid; border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #17122f;
}
@keyframes pulse {
  0% { box-shadow: 0 8px 30px rgba(0,0,0,.5), 0 0 0 0 rgba(230,195,122,.35); }
  70% { box-shadow: 0 8px 30px rgba(0,0,0,.5), 0 0 0 22px rgba(230,195,122,0); }
  100% { box-shadow: 0 8px 30px rgba(0,0,0,.5), 0 0 0 0 rgba(230,195,122,0); }
}
.vsl-hint { text-align: center; font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Buttons */
.cta {
  display: block; width: 100%;
  background: linear-gradient(180deg, #f0cd86, #cda14c);
  color: #241a06;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  padding: 17px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(205,161,76,.35), inset 0 1px 0 rgba(255,255,255,.4);
  letter-spacing: .2px;
  transition: transform .15s ease, box-shadow .15s ease;
  animation: cta-glow 2.4s ease-in-out infinite;
}
.cta:hover { transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.cta small { display: block; font-weight: 600; font-size: 12px; opacity: .8; margin-top: 2px; letter-spacing: .4px; }
@keyframes cta-glow {
  0%,100% { box-shadow: 0 12px 30px rgba(205,161,76,.35), inset 0 1px 0 rgba(255,255,255,.4); }
  50% { box-shadow: 0 12px 40px rgba(230,195,122,.6), inset 0 1px 0 rgba(255,255,255,.5); }
}
.cta.hidden-delay { display: none; }

.cta-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 8px; }

/* Sections */
section { padding: 30px 0; }
.eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); background: var(--gold-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 12px;
}
.h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(24px, 6vw, 34px); line-height: 1.15; margin-bottom: 12px;
}
.h2 .hl { color: var(--gold); }
.p { color: var(--muted); font-size: 16px; margin-bottom: 12px; }
.p b { color: var(--text); font-weight: 600; }
.center { text-align: center; }

/* Panel / offer box */
.panel {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.offer { text-align: center; }
.checklist { list-style: none; text-align: left; margin: 14px 0 18px; }
.checklist li {
  position: relative; padding: 8px 0 8px 32px;
  font-size: 15.5px; color: var(--text);
  border-bottom: 1px dashed rgba(255,255,255,.06);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: #17122f; background: var(--gold);
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
.price-row { margin: 6px 0 4px; }
.price-from { color: var(--muted); text-decoration: line-through; font-size: 18px; }
.price-now { color: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 46px; line-height: 1; }
.price-tag { font-size: 13px; color: var(--rose); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }

/* Advertorial */
.story p { font-size: 16.5px; color: #d7cfe8; margin-bottom: 14px; }
.story p .em { color: var(--rose); font-style: italic; }

/* Feature cards */
.cards { display: grid; gap: 14px; margin-top: 14px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.card .ic { font-size: 24px; margin-bottom: 8px; }
.card h3 { font-family: var(--serif); font-size: 20px; color: var(--gold); margin-bottom: 4px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .cimg { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--line); }
@media (min-width: 640px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

/* Product beauty shot */
.product-shot { margin: 4px 0 18px; }
.product-shot img {
  width: 100%; border-radius: 16px; display: block;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* Testimonials — carrossel de imagens reais */
.testi-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding: 6px 2px 10px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-scroll img {
  flex: 0 0 76%; max-width: 300px; height: auto;
  border-radius: 16px; scroll-snap-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 640px) { .testi-scroll img { flex-basis: 300px; } }

/* Testimonials */
.testi { display: grid; gap: 14px; margin-top: 16px; }
.tcard {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 16px 14px;
}
.tcard .top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; color: #17122f;
  font-family: var(--serif); font-size: 18px;
}
.tname { font-weight: 700; font-size: 14px; }
.tstars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.tcard p { font-size: 14.5px; color: #ddd5ec; }
.tbadge { font-size: 11px; color: var(--ok); margin-top: 6px; display: inline-flex; align-items: center; gap: 5px; }

.socialbar { text-align: center; margin-top: 16px; color: var(--muted); font-size: 14px; }
.socialbar b { color: var(--gold); }

/* Scarcity */
.scarcity { border-color: rgba(226,112,138,.4); }
.scarcity .h3 { font-family: var(--serif); font-size: 22px; color: var(--rose); margin-bottom: 8px; }
.spots {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(226,112,138,.14); border: 1px solid rgba(226,112,138,.4);
  color: #ffc9d6; border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px;
  margin: 4px 0 12px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 10px var(--danger); animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: .3; } }

/* Compare block */
.compare { display: grid; gap: 14px; }
@media (min-width: 560px) { .compare { grid-template-columns: 1fr 1fr; } }
.col { border-radius: 14px; padding: 18px; border: 1px solid var(--line); }
.col.yes { background: rgba(95,206,147,.07); border-color: rgba(95,206,147,.35); }
.col.no { background: rgba(226,112,138,.06); border-color: rgba(226,112,138,.3); }
.col h4 { font-size: 15px; margin-bottom: 10px; letter-spacing: .3px; }
.col.yes h4 { color: var(--ok); }
.col.no h4 { color: var(--danger); }
.col ul { list-style: none; }
.col li { font-size: 14px; padding: 6px 0 6px 24px; position: relative; color: #d7cfe8; }
.col.yes li::before { content: "✓"; color: var(--ok); position: absolute; left: 0; font-weight: 800; }
.col.no li::before { content: "✕"; color: var(--danger); position: absolute; left: 0; font-weight: 800; }

/* Guarantee */
.guarantee { text-align: center; }
.seal {
  width: 118px; height: 118px; margin: 0 auto 12px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; text-align: center; padding: 10px;
  border: 2px solid var(--gold); color: var(--gold);
  font-family: var(--serif); font-weight: 700; line-height: 1.02; font-size: 14px; letter-spacing: .5px;
  box-shadow: 0 0 30px rgba(230,195,122,.22), inset 0 0 0 6px rgba(230,195,122,.08);
}
.seal span { display: block; font-size: 34px; line-height: 1; }
.seal-caption { color: var(--rose); font-weight: 700; font-size: 15px; margin: -2px 0 12px; }

/* Assinatura da taróloga */
.signature { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 18px 0 20px; text-align: left; }
.sig-photo {
  width: 78px; height: 78px; border-radius: 50%; object-fit: cover; object-position: center 22%;
  border: 2px solid var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,.4);
  background: var(--panel-2);
}

/* Sobre a Karyne */
.about { padding: 0; overflow: hidden; }
.about-photo { width: 100%; height: 340px; object-fit: cover; object-position: center 18%; display: block; }
.about-body { padding: 22px 20px 24px; }
.about-body .h2 { margin-bottom: 10px; }
.about-badges { display: flex; gap: 10px; margin-top: 16px; }
.about-badge {
  flex: 1; text-align: center; background: var(--gold-soft);
  border: 1px solid var(--line); border-radius: 12px; padding: 10px 6px;
}
.about-badge b { display: block; font-family: var(--serif); color: var(--gold); font-size: 21px; line-height: 1.1; }
.about-badge span { font-size: 11px; color: var(--muted); }
@media (min-width: 640px) {
  .about { display: grid; grid-template-columns: 42% 1fr; align-items: stretch; }
  .about-photo { height: 100%; min-height: 360px; }
}
.sig-text { display: flex; flex-direction: column; }
.sig-hand { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 15px; }
.sig-name { font-family: var(--serif); color: var(--gold); font-size: 24px; font-weight: 700; line-height: 1.1; }
.sig-role { color: var(--muted); font-size: 12px; letter-spacing: .5px; }

/* FAQ */
.faq { display: grid; gap: 10px; margin-top: 8px; }
.qa { border: 1px solid var(--line); border-radius: 12px; background: var(--panel); overflow: hidden; }
.qa button {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  font-size: 15.5px; font-weight: 600; padding: 16px 44px 16px 16px; cursor: pointer; position: relative;
  font-family: var(--sans);
}
.qa button::after { content: "+"; position: absolute; right: 16px; top: 14px; color: var(--gold); font-size: 22px; transition: transform .2s; }
.qa.open button::after { transform: rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa .ans p { padding: 0 16px 16px; color: var(--muted); font-size: 14.5px; }
.qa.open .ans { max-height: 320px; }

/* Footer */
footer { border-top: 1px solid var(--line); margin-top: 20px; padding: 26px 0 120px; text-align: center; }
.flinks { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 14px; }
.flinks a { color: var(--muted); font-size: 13px; text-decoration: none; }
.flinks a:hover { color: var(--gold); }
.fdisc { color: #6f688a; font-size: 11.5px; max-width: 480px; margin: 8px auto 0; line-height: 1.5; }
.fcopy { color: #8a82a8; font-size: 12px; margin-top: 10px; }

/* Sticky mobile CTA */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(10,8,25,0), rgba(10,8,25,.92) 30%);
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky.show { transform: translateY(0); }
.sticky .cta { max-width: 620px; margin: 0 auto; padding: 14px 18px; font-size: 16px; }

/* ============ FORM / QUIZ ============ */
.quiz-shell { min-height: 100dvh; display: flex; flex-direction: column; }
.progress { height: 4px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; margin: 16px 0 6px; }
.progress > span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-2), var(--gold)); transition: width .4s ease; }
.step-label { text-align: center; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.step { display: none; animation: fade .4s ease; }
.step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.q-title { font-family: var(--serif); font-size: clamp(24px, 6.5vw, 34px); line-height: 1.15; text-align: center; margin-bottom: 8px; }
.q-sub { text-align: center; color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--panel); border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 15px 16px; font-size: 16px; font-family: var(--sans);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 96px; resize: vertical; }
.options { display: grid; gap: 10px; margin-bottom: 18px; }
.opt {
  text-align: left; background: var(--panel); border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 15px 16px; font-size: 15.5px; cursor: pointer; font-family: var(--sans);
  display: flex; align-items: center; gap: 12px; transition: border-color .15s, background .15s;
}
.opt:hover, .opt.sel { border-color: var(--gold); background: var(--gold-soft); }
.opt .oic { font-size: 20px; }
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.choice .opt { justify-content: center; text-align: center; flex-direction: column; gap: 4px; }
.nav { display: flex; gap: 10px; margin-top: 8px; }
.btn-ghost {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 15px 22px; font-size: 15px; cursor: pointer; font-family: var(--sans);
}
.btn-ghost:hover { color: var(--text); }
.nav .cta { flex: 1; }

/* Channeling animation */
.channel { text-align: center; padding: 40px 0; }
.orb {
  width: 120px; height: 120px; margin: 0 auto 24px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff, var(--gold) 35%, #7a4bbd 75%, #2a1a4d);
  box-shadow: 0 0 60px rgba(230,195,122,.5); animation: float 3s ease-in-out infinite, spin 8s linear infinite;
}
@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes spin { to { filter: hue-rotate(40deg); } }
.channel .status { font-family: var(--serif); font-size: 22px; color: var(--gold); min-height: 30px; }
.channel .sub { color: var(--muted); font-size: 14px; margin-top: 8px; }

.result { text-align: center; }
.result .seal { margin-bottom: 16px; }
.summary {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px; text-align: left; margin: 16px 0; font-size: 14.5px;
}
.summary .row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.07); }
.summary .row:last-child { border: none; }
.summary .k { color: var(--muted); }
.summary .v { color: var(--text); font-weight: 600; text-align: right; max-width: 60%; }
