/* =====================================================
   ColágenoPro™ — Quiz + Landing
   Dark premium, mobile-first
   ===================================================== */

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

:root {
  --black: #050505;
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #181818;
  --bg-4: #222222;
  --line: #2a2a2a;
  --line-2: #3a3a3a;
  --white: #FFFFFF;
  --text: #EDEDED;
  --muted: #9a9a9a;
  --gray: #6e6e6e;

  /* Premium gold/black palette to match new pote */
  --gold: #D4AF37;
  --gold-light: #F2D072;
  --gold-dark: #A88521;
  --gold-glow: rgba(212, 175, 55, 0.32);

  --green: #2ECC71;
  --green-dark: #20a85a;
  --red: #E5484D;

  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 6px 24px rgba(0,0,0,0.35);
  --shadow-2: 0 14px 50px rgba(0,0,0,0.55);
  --shadow-gold: 0 8px 30px rgba(212,175,55,0.18);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 18px; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(212,175,55,0.06), transparent 60%);
  z-index: 0;
}

/* =================== HEADER =================== */
header.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: center;
}
.brand-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 900; letter-spacing: 0.5px;
  font-size: clamp(15px, 4.4vw, 20px);
}
.brand-logo img { height: 2em; width: auto; display: block; }
.brand-logo .by { font-size: 0.55em; color: var(--gold); letter-spacing: 2px; }

.top-bar {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #1a1306;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.7rem, 2.6vw, 0.85rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  position: relative; overflow: hidden; z-index: 70;
}
.top-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%);} 100% { transform: translateX(100%);} }

/* =================== QUIZ =================== */
#quiz-app { position: relative; z-index: 1; min-height: calc(100vh - 90px); }

.quiz-progress {
  position: sticky; top: 56px; z-index: 40;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px 14px;
}
.qp-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: var(--font-display); font-weight: 700;
  margin-bottom: 8px;
}
.qp-bar {
  height: 6px; width: 100%;
  background: #1a1a1a; border-radius: 99px; overflow: hidden;
  position: relative;
}
.qp-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  border-radius: 99px;
  box-shadow: 0 0 12px var(--gold-glow);
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

.quiz-stage {
  padding: 28px 18px 120px;
  max-width: 720px; margin: 0 auto;
  position: relative;
}

.quiz-screen {
  display: none;
  animation: fadeUp 0.45s cubic-bezier(.2,.7,.2,1) both;
}
.quiz-screen.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Welcome screen */
.welcome-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.12em;
  font-size: 0.72rem; text-transform: uppercase;
  padding: 6px 12px; border-radius: 99px;
  margin-bottom: 14px;
}
.welcome-eyebrow::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.welcome-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.85rem, 8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.welcome-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.welcome-sub {
  color: var(--text); opacity: 0.85;
  font-size: clamp(0.95rem, 3.6vw, 1.05rem);
  margin-bottom: 22px;
}
.welcome-bullets {
  display: grid; gap: 10px;
  margin: 22px 0 26px;
}
.welcome-bullet {
  display: flex; align-items: flex-start; gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.welcome-bullet svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.welcome-bullet span { font-size: 0.95rem; }

.welcome-meta {
  display: flex; flex-wrap: wrap; gap: 14px; row-gap: 6px;
  color: var(--muted); font-size: 0.82rem;
  align-items: center; justify-content: center;
  margin-top: 16px;
}
.welcome-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray); }

.hero-pote-wrap {
  position: relative;
  margin: 0 auto 18px;
  max-width: 280px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}
.hero-pote-wrap::before {
  content: '';
  position: absolute; inset: -10% -10% 10% -10%;
  background: radial-gradient(closest-side, var(--gold-glow) 0%, transparent 70%);
  z-index: -1;
}

/* Question screens */
.q-step {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 8px;
}
.q-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  line-height: 1.1;
  margin-bottom: 6px;
}
.q-help {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.options { display: grid; gap: 10px; }
.option {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(180deg, #131313 0%, #0e0e0e 100%);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.option:hover, .option:focus-visible {
  border-color: var(--gold-dark);
  background: linear-gradient(180deg, #1a1a1a 0%, #131313 100%);
}
.option:active { transform: scale(0.985); }
.option.is-selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,0.10) 0%, rgba(212,175,55,0.04) 100%);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18), var(--shadow-gold);
}
.option .opt-icon {
  width: 28px; height: 28px; flex: 0 0 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
}
.option .opt-icon svg { width: 16px; height: 16px; }
.option .opt-txt { flex: 1; }
.option .opt-check {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%; border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  transition: all 0.2s ease;
}
.option.is-selected .opt-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0700;
}
.option.is-selected .opt-check::after {
  content: ''; width: 10px; height: 6px;
  border: 2px solid #0a0700; border-top: 0; border-right: 0;
  transform: rotate(-45deg) translate(0px,-2px);
}

/* Slider for intensity */
.intensity-wrap { padding-top: 6px; }
.intensity-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 14vw, 5rem);
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.intensity-label {
  text-align: center; font-size: 0.95rem;
  color: var(--muted); margin-bottom: 18px;
}
.intensity-label strong { color: var(--text); }
.range-wrap { padding: 8px 4px 0; }
input[type="range"].slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; background: transparent;
}
input[type="range"].slider::-webkit-slider-runnable-track {
  height: 8px; border-radius: 99px;
  background: linear-gradient(90deg, #2c8a4d 0%, #c4a32f 50%, #b9302d 100%);
}
input[type="range"].slider::-moz-range-track {
  height: 8px; border-radius: 99px;
  background: linear-gradient(90deg, #2c8a4d 0%, #c4a32f 50%, #b9302d 100%);
}
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border: 2px solid #fff;
  margin-top: -10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 6px rgba(212,175,55,0.18);
  cursor: pointer;
}
input[type="range"].slider::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}
.range-ticks {
  display: flex; justify-content: space-between;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.72rem; color: var(--muted);
  margin-top: 6px; padding: 0 4px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Video screens between questions */
.video-screen {
  text-align: center;
}
.video-screen .vs-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(46,204,113,0.10);
  color: var(--green);
  border: 1px solid rgba(46,204,113,0.35);
  padding: 5px 12px; border-radius: 99px;
  font-size: 0.72rem;
  margin-bottom: 12px;
}
.video-screen .vs-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 6vw, 2rem);
  line-height: 1.1;
  margin-bottom: 6px;
}
.video-screen .vs-sub {
  color: var(--muted); font-size: 0.95rem;
  margin-bottom: 18px;
}
.video-frame {
  position: relative;
  margin: 0 auto 20px;
  max-width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1.5px solid var(--line-2);
  box-shadow: var(--shadow-2);
  aspect-ratio: 9/16;
}
.video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-frame .vp-stars {
  position: absolute; left: 12px; top: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold); font-size: 0.85rem; letter-spacing: 1px;
  padding: 4px 9px; border-radius: 99px; font-weight: 700;
}
.video-frame .vp-name {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 0.78rem;
  padding: 4px 10px; border-radius: 99px; font-weight: 600;
}

/* CTA buttons */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a1306;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
  border-radius: 28px;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 32px rgba(212,175,55,0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(212,175,55,0.45);
  background: linear-gradient(135deg, #E0C158 0%, #D4AF37 100%);
}
.btn-cta:active { transform: translateY(-1px); }
.btn-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.btn-cta:hover::after { transform: translateX(130%); }
.btn-cta svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Loading screen */
.loading-screen { text-align: center; padding-top: 48px; }
.loading-spinner {
  width: 70px; height: 70px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--gold) 90%, transparent);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
          mask: radial-gradient(closest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg);} }
.loading-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 6vw, 2rem);
  margin-bottom: 8px;
}
.loading-sub { color: var(--muted); margin-bottom: 26px; }
.loading-steps { display: grid; gap: 10px; max-width: 420px; margin: 0 auto; }
.loading-step {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.93rem;
  color: var(--muted);
  opacity: 0.4; transition: opacity 0.4s ease, color 0.4s ease;
}
.loading-step.done { opacity: 1; color: var(--text); }
.loading-step .ls-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line-2);
  display: grid; place-items: center;
  flex: 0 0 16px;
  position: relative;
}
.loading-step.done .ls-dot {
  background: var(--green); border-color: var(--green);
}
.loading-step.done .ls-dot::after {
  content: ''; width: 8px; height: 5px;
  border: 2px solid #0a0700; border-top: 0; border-right: 0;
  transform: rotate(-45deg) translate(0px,-1px);
}

/* =================== RESULT PAGE =================== */
.result-hero {
  position: relative; z-index: 1;
  padding: 30px 18px 14px;
  max-width: 780px; margin: 0 auto;
}
.result-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.14em;
  font-size: 0.72rem; text-transform: uppercase;
  padding: 6px 12px; border-radius: 99px;
  margin-bottom: 14px;
}
.result-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
}
.result-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.85rem, 7.4vw, 2.6rem);
  line-height: 1.06;
  margin-bottom: 12px;
}
.result-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.result-sub {
  color: var(--text); opacity: 0.88;
  font-size: clamp(0.98rem, 3.6vw, 1.06rem);
  margin-bottom: 18px;
}
.result-meter {
  display: grid; gap: 6px;
  background: linear-gradient(180deg, #131313, #0d0d0d);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin: 14px 0 22px;
}
.result-meter .rm-row {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.06em;
  font-size: 0.9rem;
}
.rm-row .rm-level { color: var(--gold); }
.rm-bar { height: 10px; background: #1a1a1a; border-radius: 99px; overflow: hidden; position: relative;}
.rm-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--red) 100%);
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(.2,.7,.2,1);
}
.rm-foot { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-display); font-weight: 700;}

.diagnosis-card {
  background: linear-gradient(180deg, rgba(212,175,55,0.06) 0%, rgba(212,175,55,0.01) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin: 0 0 28px;
  position: relative; overflow: hidden;
}
.diagnosis-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 8px;
  color: var(--gold-light);
}
.diagnosis-card p { color: var(--text); opacity: 0.92; font-size: 0.96rem; }
.diagnosis-list { display: grid; gap: 8px; margin-top: 14px; }
.diagnosis-list li {
  list-style: none;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.94rem;
}
.diagnosis-list li svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--green); margin-top: 2px; }

/* Countdown */
.countdown-wrap {
  background: linear-gradient(180deg, rgba(229,72,77,0.10), rgba(229,72,77,0.02));
  border: 1px solid rgba(229,72,77,0.35);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cd-label {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}
.cd-label small { display: block; color: var(--muted); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 0.78rem; margin-top: 1px;}
.cd-clock {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
}
.cd-clock .cd-cell {
  background: #0a0a0a; border: 1px solid var(--line-2);
  border-radius: 8px; padding: 5px 9px; min-width: 44px; text-align: center;
}
.cd-clock .cd-sep { color: var(--gold); }

/* ====================================================== */
/*  PRICING CARDS — TEMPLATE PREMIUM (potes.html style)    */
/* ====================================================== */
.pricing-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .kit-body {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  .kit-card.kc-size-lg .kit-body { grid-template-columns: 1fr; }
  .kit-pic {
    aspect-ratio: 1 / 1;
    max-width: 200px;
    margin: 0 auto;
  }
  .kit-info { align-content: start; justify-items: center; }
  .kit-gift { margin: 8px auto; }
  .kit-parc-big { justify-content: center; }
}

.kit-card {
  position: relative;
  background: linear-gradient(180deg, #0e0e0e 0%, #060606 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  padding: 22px 18px 20px;
  display: flex; flex-direction: column;
  gap: 16px;
  overflow: visible;
  box-shadow:
    0 8px 28px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.kit-card:hover { transform: translateY(-2px); }

.kit-card.kit-recommended {
  border-color: rgba(212, 175, 55, 0.85);
  background:
    radial-gradient(640px 220px at 50% 0%, rgba(212,175,55,0.18), transparent 70%),
    linear-gradient(180deg, #1a1408 0%, #060503 100%);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.55),
    0 18px 50px rgba(212,175,55,0.18),
    inset 0 0 35px rgba(212,175,55,0.06);
  margin-top: 14px; /* dá ar pro badge */
}
@media (min-width: 900px) {
  .kit-card.kc-size-lg { transform: scale(1.02); }
  .kit-card.kc-size-lg:hover { transform: scale(1.02) translateY(-2px); }
}

/* Badges no topo */
.kit-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 0.72rem;
  padding: 8px 18px;
  border-radius: 99px;
  white-space: nowrap;
  z-index: 5;
}
.kit-badge.gold {
  background: linear-gradient(180deg, #f4d878 0%, #c9a040 100%);
  color: #1a1306;
  box-shadow: 0 6px 22px rgba(212,175,55,0.45);
  border: 1px solid rgba(255,235,170,0.65);
}
.kit-badge.green {
  background: linear-gradient(180deg, #3edc83 0%, #1c9b54 100%);
  color: #062012;
  box-shadow: 0 6px 22px rgba(46,204,113,0.35);
  border: 1px solid rgba(180,255,210,0.45);
}

/* Layout principal: imagem em cima, info embaixo */
.kit-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
}
.kit-card.kc-size-lg .kit-body { grid-template-columns: 1fr; }

.kit-pic {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(212,175,55,0.10) 0%, rgba(212,175,55,0) 55%),
    radial-gradient(ellipse at 50% 95%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  border-radius: 12px;
  overflow: visible;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 6px 4px 0 4px;
}
.kit-pic img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.55)) drop-shadow(0 0 14px rgba(212,175,55,0.08));
}

/* "NOVA FÓRMULA · NOVA EMBALAGEM" strip at top of card */
.kit-newstrip {
  margin: -4px -4px 12px;
  padding: 7px 10px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(244,211,106,0.18) 0%, rgba(212,175,55,0.10) 100%);
  border: 1px solid rgba(212,175,55,0.45);
}
.kit-newstrip span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4d36a;
  text-shadow: 0 1px 0 rgba(0,0,0,0.6);
  white-space: nowrap;
}
.kit-card.kc-size-lg .kit-newstrip span { font-size: 0.7rem; }
@media (max-width: 480px) {
  .kit-newstrip { padding: 6px 8px; margin-bottom: 10px; }
  .kit-newstrip span { font-size: 0.55rem; letter-spacing: 0.12em; }
  .kit-card.kc-size-lg .kit-newstrip span { font-size: 0.6rem; }
}
@media (max-width: 360px) {
  .kit-newstrip span { font-size: 0.5rem; letter-spacing: 0.1em; }
}

.kit-info { display: grid; gap: 4px; align-content: center; justify-items: center; }
.kit-name {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.3rem; line-height: 1.1; letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
}
.kit-card.kc-size-lg .kit-name { font-size: 1.45rem; }
.kit-subtitle {
  font-size: 0.7rem; color: rgba(255,255,255,0.55);
  font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  margin: 0 0 8px 0;
}

/* Pricebox */
.kit-pricebox { display: grid; gap: 2px; }
.kit-from {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.kit-from s { color: var(--red); font-weight: 700; text-decoration: line-through; }
.kit-gift {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 6px 0;
  padding: 4px 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 6px;
  display: inline-block;
}
.kit-parc-big {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display); font-weight: 900;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(212,175,55,0.25);
  line-height: 1;
  margin: 4px 0;
}
.kit-parc-big .ku-currency { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.02em; }
.kit-parc-big .ku-value { font-size: 2.4rem; }
.kit-card.kc-size-lg .kit-parc-big .ku-value { font-size: 2.7rem; }
.kit-installments {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.kit-installments strong { color: #fff; font-weight: 800; }
.kit-cash {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.kit-cash strong { color: rgba(255,255,255,0.9); font-weight: 700; }

/* Lista de benefícios com check verde */
.kit-benefits {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 14px;
  display: grid; gap: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
}
.kit-benefits li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem; line-height: 1.4;
  color: rgba(255,255,255,0.88);
}
.kit-benefits strong { color: var(--gold); font-weight: 800; }
.kc-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #2ecc71;
  background: rgba(46,204,113,0.14);
  border-radius: 50%;
  padding: 2px;
  border: 1px solid rgba(46,204,113,0.4);
}

/* CTA Button — dourado premium */
.kit-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(180deg, #f4d878 0%, #d4a93d 50%, #b48420 100%);
  color: #1a1306;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 0 rgba(120,80,15,0.55),
    0 14px 32px rgba(212,175,55,0.4),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -2px 0 rgba(120,80,15,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.kit-card.kc-size-lg .kit-cta { font-size: 1.12rem; padding: 18px 22px; }
.kit-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow:
    0 5px 0 rgba(120,80,15,0.55),
    0 18px 40px rgba(212,175,55,0.55),
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -2px 0 rgba(120,80,15,0.35);
}
.kit-cta:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(120,80,15,0.55),
    0 6px 18px rgba(212,175,55,0.4),
    inset 0 1px 0 rgba(255,255,255,0.45);
}
.kit-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-22deg);
  animation: ctaShine 3.5s ease-in-out infinite;
}
@keyframes ctaShine {
  0%, 70% { left: -120%; }
  100% { left: 130%; }
}
.kit-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Footer do card: shipping + payments */
.kit-foot {
  display: grid; gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(212,175,55,0.15);
}
.kit-shipping {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.6);
}
.kit-shipping.free { color: #3edc83; text-transform: uppercase; letter-spacing: 0.06em;}
.kit-shipping svg { width: 18px; height: 18px; }

.kit-payments {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.kp-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.kp-icons { display: flex; gap: 5px; align-items: center; }
.kp-icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 22px; min-width: 34px;
  padding: 0 6px;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  user-select: none;
}
.kp-visa { background: #1a1f71; }
.kp-mc {
  background: #fff; gap: 0;
  position: relative;
}
.kp-mc i {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
}
.kp-mc i:first-child { background: #eb001b; margin-right: -5px; }
.kp-mc i:last-child { background: #f79e1b; mix-blend-mode: multiply; }
.kp-elo { background: #000; color: #fff; font-style: italic; }
.kp-hiper { background: #b22a2a; color: #fff; }
.kp-pix { background: #32bcad; color: #fff; }

.section { padding: 36px 18px; max-width: 900px; margin: 0 auto; position: relative; z-index: 1;}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 8px;
}
.section-title em { font-style: normal; color: var(--gold);}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* Guarantee */
.guarantee {
  display: grid; gap: 16px;
  grid-template-columns: 100px 1fr;
  align-items: center;
  background: linear-gradient(180deg, #131313, #0c0c0c);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.guarantee img { width: 100px; height: 100px; object-fit: contain; }
.guarantee h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.4rem; margin-bottom: 4px; color: var(--gold-light);
}
.guarantee p { font-size: 0.95rem; color: var(--text); opacity: 0.9; }

/* FAQ */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: linear-gradient(180deg, #131313, #0c0c0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 700; font-size: 0.98rem;
  text-align: left;
}
.faq-q::after {
  content: '+';
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem; line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item.active .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 16px 14px; color: var(--muted); font-size: 0.94rem; line-height: 1.55;}
.faq-item.active .faq-a { display: block; animation: fadeUp 0.3s ease both; }

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 14px; row-gap: 8px;
  align-items: center; justify-content: center;
  margin-top: 18px;
}
.trust-pill {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 99px; padding: 6px 12px;
}
.trust-pill.green { color: var(--green); border-color: rgba(46,204,113,0.4);}

/* Sticky CTA bar */
#sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-2);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  z-index: 80;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
#sticky-cta.visible { transform: translateY(0); }
#sticky-cta .sc-text {
  flex: 1; min-width: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.04em;
}
#sticky-cta .sc-text small {
  display: block; font-size: 0.74rem; color: var(--muted);
  font-weight: 500; letter-spacing: 0; text-transform: none;
}
#sticky-cta .sc-text .sc-price { color: var(--gold); font-size: 1rem;}
#sticky-cta .btn-sc {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: #1a1306;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 16px; border-radius: 10px;
  white-space: nowrap;
}

/* WhatsApp floating */
.float-wa {
  position: fixed;
  right: 14px;
  bottom: 78px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 70;
  transition: transform 0.2s ease;
}
.float-wa:hover { transform: translateY(-2px) scale(1.05); }
.float-wa svg { width: 30px; height: 30px; }
.float-wa::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.65);
  animation: pulseWa 2.4s infinite;
}
@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Footer */
footer.site-footer {
  margin-top: 40px;
  padding: 28px 20px 100px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  position: relative; z-index: 1;
}
footer.site-footer .ft-brand {
  color: var(--text); font-weight: 700; margin-bottom: 6px;
}
footer.site-footer .ft-disclaimer {
  margin-top: 12px; font-size: 0.74rem;
  max-width: 720px; margin-left: auto; margin-right: auto;
  opacity: 0.8;
}

/* Quick navigation buttons (back arrow) */
.q-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.85rem;
  margin-bottom: 12px;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.q-back:hover { color: var(--gold); }
.q-back svg { width: 14px; height: 14px;}

/* Tablet+ tweaks */
@media (min-width: 720px) {
  .quiz-stage { padding-top: 40px; }
  .video-frame { max-width: 320px; }
}

@media (min-width: 1024px) {
  .quiz-progress { top: 60px; }
}

/* Reveal-on-scroll */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Mobile tweaks for the kit cards */
@media (max-width: 480px) {
  .kit-card { padding: 22px 16px 20px; }
  .kit-body { grid-template-columns: 1fr; gap: 14px; }
  .kit-card.kc-size-lg .kit-body { grid-template-columns: 1fr; }
  .kit-pic { max-width: 260px; }
  .kit-name { font-size: 1.4rem; }
  .kit-card.kc-size-lg .kit-name { font-size: 1.55rem; }
  .kit-subtitle { font-size: 0.7rem; letter-spacing: 0.1em; }
  .ku-value { font-size: 2.2rem; }
  .kit-card.kc-size-lg .ku-value { font-size: 2.4rem; }
  .kit-cta { font-size: 1.05rem; padding: 16px 18px; letter-spacing: 0.08em; }
}
@media (max-width: 360px) {
  .kit-pic { max-width: 220px; }
  .kit-name { font-size: 1.25rem; }
  .kit-card.kc-size-lg .kit-name { font-size: 1.35rem; }
  .ku-value { font-size: 1.9rem; }
}


/* =================== HERO SECTION =================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.btn-hero {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: #1a1306;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.45);
}

.btn-hero:hover::before {
  transform: translateX(100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .hero-section {
    height: auto;
    min-height: 500px;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
  
  .hero-bg {
    object-fit: contain;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(10,10,10,0.95));
  }
  
  .hero-content {
    max-width: 800px;
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 70vh;
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 30px 20px;
    max-width: 100%;
  }
  
  .hero-headline {
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 65vh;
    padding: 40px 0;
  }
  
  .hero-content {
    padding: 20px 16px;
  }
  
  .hero-headline {
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    margin-bottom: 24px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  
  .btn-hero {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ===== Unmute Button ===== */
.video-wrapper {
  position: relative;
  width: 100%;
}

.unmute-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: #1a1306;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.unmute-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 10px 36px rgba(212, 175, 55, 0.55);
}

.pulse-unmute {
  animation: pulseUnmute 2s infinite;
}

@keyframes pulseUnmute {
  0% {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4), 0 0 0 12px rgba(212, 175, 55, 0.15);
  }
  100% {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  }
}

@media (max-width: 480px) {
  .unmute-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}
