/* ==========================================================================
   SANDRO.GOZZ — Landing Page
   Dark Cinematic Personal Brand v2 — ver Identidad_Visual_Sandro_Gozz
   ========================================================================== */

:root {
  --bg: #0c0c0c;
  --bg-alt: #111009;
  --surface: #161310;
  --surface-2: #1c1915;
  --accent: #e8581a;
  --accent-dim: rgba(232, 88, 26, 0.10);
  --accent-line: rgba(232, 88, 26, 0.25);
  --green-ok: #16b91a;
  --red-error: #e30b0b;

  --text: #f0ede8;
  --text-sub: #9b9490;
  --text-muted: #5c5854;
  --border: rgba(240, 237, 232, 0.07);
  --border-soft: rgba(240, 237, 232, 0.04);

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --container: 1180px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Film grain overlay ---- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Typography helpers ---- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.02;
  text-transform: uppercase;
}

.accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  color: var(--accent);
  letter-spacing: 0;
}

h1.display { font-size: clamp(38px, 6.4vw, 78px); font-weight: 800; }
h2.display { font-size: clamp(30px, 4.6vw, 52px); font-weight: 800; }
h3.display { font-size: clamp(20px, 2.6vw, 28px); }

.eyebrow-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
}

.text-dim { color: var(--text-sub); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head p {
  margin-top: 18px;
  color: var(--text-sub);
  font-size: 17px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

section { position: relative; padding: 120px 0; border-bottom: 1px solid var(--border); }
@media (max-width: 720px) { section { padding: 80px 0; } }

/* ---- Section background rhythm (zebra-striped bands) ---- */
.value { background: var(--bg-alt); }
.packages { background: var(--bg-alt); }
.quiz-cta { background: var(--surface); }
.brand-closer { border-bottom: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b8460f 100%);
  color: var(--text);
  box-shadow: 0 8px 30px -8px rgba(232, 88, 26, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(232, 88, 26, 0.7); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent-line); background: var(--accent-dim); }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
}
.wordmark .dot { color: var(--accent); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text-sub); transition: color 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; }
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 480px) {
  .wordmark { font-size: 17px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 12.5px; }
}

/* ---- Hero ---- */
.hero {
  padding: 190px 0 140px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.hero-glow {
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232, 88, 26, 0.28) 0%, rgba(232, 88, 26, 0.08) 40%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}
.hero-content { max-width: 640px; }
.hero h1 { margin: 22px 0 26px; }
.hero .lede { max-width: 600px; color: var(--text-sub); font-size: 18px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* ---- Foto (debajo de las fases, dentro de .phases) ---- */
.portrait-frame {
  position: relative;
  max-width: 420px;
  margin: 56px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.portrait-frame::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.portrait-frame::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(185deg, transparent 55%, rgba(12, 12, 12, 0.85) 100%),
              linear-gradient(90deg, rgba(232, 88, 26, 0.20), transparent 40%);
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }

@media (max-width: 720px) {
  .hero { padding: 130px 0 90px; min-height: 0; }
  .hero .lede { font-size: 16px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ---- VSL (video sales letter placeholder) ---- */
.vsl-frame {
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.vsl-play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.vsl-play svg { width: 28px; height: 28px; }
.vsl-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.vsl-cta { text-align: center; margin-top: 32px; }


/* ---- Phases (mapa del método) — tarjetas planas ---- */
.phases-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.phase-card {
  position: relative;
  background: var(--surface);
  border-top: 3px solid var(--border-soft);
  border-radius: 0;
  padding: 34px 30px 38px;
  transition: border-color .25s;
}
.phase-card:hover { border-top-color: var(--accent); }
.phase-card .eyebrow-num { display: block; margin-bottom: 10px; }
.phase-card h3 { margin-bottom: 12px; }
.phase-card p { color: var(--text-sub); font-size: 15.5px; }
.phase-card mark { background: none; color: var(--accent); font-weight: 700; }

@media (max-width: 720px) {
  .phases-track { grid-template-columns: 1fr; }
}

/* ---- Value grid ---- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.value-card:hover { border-color: var(--accent-line); transform: translateY(-4px); }
.value-card .icon { width: 40px; height: 40px; margin-bottom: 22px; color: var(--accent); }
.value-card .icon svg { width: 100%; height: 100%; }
.value-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.value-card p { color: var(--text-sub); font-size: 14.5px; }
@media (max-width: 980px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
@media (max-width: 400px) { .value-card { padding: 24px 20px; } }

/* ---- Process timeline ---- */
.process-list { max-width: 780px; }
.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
.process-step .eyebrow-num { font-size: 26px; }
.process-step h4 { font-size: 17px; margin-bottom: 6px; }
.process-step p { color: var(--text-sub); font-size: 14.5px; }

@media (max-width: 480px) {
  .process-step { grid-template-columns: 40px 1fr; gap: 14px; padding: 20px 0; }
  .process-step .eyebrow-num { font-size: 20px; }
}

/* ---- Packages ---- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.package-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
}
.package-card.featured {
  border-color: var(--accent-line);
  background: var(--surface-2);
  outline: 1px solid var(--accent-line);
  outline-offset: -1px;
}
.package-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  background: var(--border);
  color: var(--text-muted);
}
.package-card.featured .package-badge { background: var(--accent-dim); color: var(--accent); }
.package-card h3 { margin-bottom: 6px; }
.package-tagline { color: var(--text-sub); font-size: 14.5px; margin-bottom: 24px; }
.package-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex-grow: 1; }
.package-features li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.package-features li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--accent); }
.package-price-note { font-size: 12.5px; color: var(--text-muted); text-align: center; margin-top: 44px; }
@media (max-width: 980px) {
  .packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .package-card { padding: 30px 22px; }
}

/* ---- Quiz CTA banner ---- */
.quiz-banner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-line);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: radial-gradient(ellipse at 20% 20%, rgba(232, 88, 26, 0.12), transparent 60%), var(--surface-2);
}
.quiz-banner-text h3 { margin-bottom: 10px; }
.quiz-banner-text p { color: var(--text-sub); max-width: 460px; }
@media (max-width: 760px) { .quiz-banner { flex-direction: column; text-align: center; padding: 40px 28px; } }
@media (max-width: 400px) { .quiz-banner { padding: 32px 20px; } }

/* ---- Offer card ---- */
.offer-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(165deg, rgba(232, 88, 26, 0.12), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
}
.offer-badge {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.offer-card h2 { margin-bottom: 12px; }
.offer-card .lede { color: var(--text-sub); margin-bottom: 34px; }
.offer-ctas { display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 480px) {
  .offer-card { padding: 40px 24px; }
}

/* ---- Calendar embed (reutilizado en agendar.html) ---- */
.calendar-frame-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--accent-line);
  background: var(--text);
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 88, 26, 0.08);
}
.calendar-frame-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent 75%);
  z-index: 3;
}
.calendar-frame-wrap iframe { width: 100%; height: 640px; border: 0; background: var(--text); }

/* Tapa el logo de "Google Calendar" del widget embebido — el interior del iframe
   es contenido cross-origin y no se puede restilizar, así que esto es un parche
   visual posicionado sobre la esquina donde Google dibuja su marca. */
.calendar-logo-mask {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 150px;
  height: 28px;
  background: var(--text);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 600px) {
  .calendar-frame-wrap, .calendar-frame-wrap iframe { height: 720px; }
  .calendar-frame-wrap { overflow-x: auto; }
}

@media (max-width: 700px) {
  .calendar-logo-mask { display: none; }
}

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
}
.faq-question .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-question .plus::before { width: 14px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 14px; transition: transform 0.3s var(--ease-out); }
.faq-item.open .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer p { padding: 0 4px 26px; color: var(--text-sub); font-size: 15.5px; max-width: 640px; }



/* ---- Brand closer ---- */
.brand-closer {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 88, 26, 0.3), transparent 65%), var(--surface);
}
.brand-closer .closer-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(28, 25, 21, 0.55) 40%, var(--surface) 100%);
}
.brand-closer .container { position: relative; z-index: 1; }
.brand-closer .wordmark-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 13vw, 168px);
  letter-spacing: 2px;
  line-height: 1;
}
.brand-closer .wordmark-big .dot { color: var(--accent); }
.brand-closer .tagline {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 26px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-sub);
  padding: 0 12px;
}
.brand-closer .tagline .accent { color: var(--accent); }

@media (max-width: 600px) {
  .brand-closer { padding: 90px 0; }
}

/* ---- Footer ---- */
.site-footer { padding: 50px 0; border-top: 1px solid var(--border); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { font-size: 14px; color: var(--text-sub); transition: color 0.25s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ---- Reveal animation base state (JS adds .is-visible) ---- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-visible { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }

/* ---- Utility ---- */
.mono-line { font-family: var(--font-body); font-size: 13px; letter-spacing: 1px; color: var(--text-muted); }

/* ---- Small phone safety net ---- */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .wordmark { font-size: 15px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 12px; }
}

/* ==========================================================================
   AGENDAR (agendar.html) — página dedicada de agendamiento
   ========================================================================== */

.book-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-sub);
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }

.book-hero { padding: 90px 0; }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.book-pitch .lede { color: var(--text-sub); margin: 22px 0 34px; max-width: 44ch; }

.book-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}
.book-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-sm);
}
.book-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.book-detail-value { font-size: 14px; color: var(--text); font-weight: 500; }

.book-promises { display: flex; flex-direction: column; gap: 12px; }
.book-promises li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.5;
}
.book-promises li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.booking-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.booking-card-header { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.booking-type { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.booking-name { font-size: 22px; letter-spacing: 0.01em; }

.booking-meta { display: flex; flex-direction: column; gap: 10px; padding: 20px 28px; border-bottom: 1px solid var(--border); }
.meta-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-sub); }
.meta-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-muted); }

.booking-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 20px; }
.booking-desc { font-size: 13.5px; color: var(--text-sub); line-height: 1.6; }
.no-cost { text-align: center; font-size: 12px; color: var(--text-muted); }
.no-cost strong { color: var(--text-sub); }
.secure-note { text-align: center; font-size: 11.5px; color: var(--text-muted); }

@media (max-width: 780px) {
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   QUIZ (quiz.html)
   ========================================================================== */

.quiz-page-body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: var(--font-body);
}

.quiz-wrap {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 620px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.quiz-wrap::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.quiz-wrap .brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.progress-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  margin-bottom: 6px;
}

.progress-bar-wrap {
  background: var(--border);
  border-radius: 99px;
  height: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.question-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.question-title span { color: var(--accent); }

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  width: 100%;
}

.option-btn:hover { border-color: var(--accent); background: var(--surface); }
.option-btn.selected { border-color: var(--accent); background: var(--surface-2); }

.option-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  min-width: 22px;
  opacity: 0.6;
}

.option-btn.selected .option-letter { opacity: 1; }

.nav-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.next-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 13px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.35;
  pointer-events: none;
}

.next-btn.active { opacity: 1; pointer-events: all; }
.next-btn.active:hover { filter: brightness(1.15); transform: translateY(-1px); }

.error-msg {
  font-size: 12px;
  color: var(--red-error);
  margin-top: 8px;
  display: none;
}

/* RESULTADO */
.result-wrap { text-align: center; }

.result-level-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  color: var(--accent);
}

.result-level-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--text);
  letter-spacing: 4px;
}

.result-divider {
  width: 60px; height: 2px;
  background: var(--accent);
  margin: 1rem auto 1.25rem;
}

.result-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 10px;
  text-align: left;
}

.result-card-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.result-card-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}

.result-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-top: 1rem;
  text-align: left;
}

.cta-btn {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 18px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}

.cta-btn:hover { filter: brightness(1.15); transform: translateY(-2px); }

.cta-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 2px;
  font-weight: 600;
}

.restart-btn {
  margin-top: 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-sub);
  border-radius: 8px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.restart-btn:hover { border-color: var(--accent); color: var(--accent); }

.quiz-wrap .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
}
.quiz-wrap .back-link:hover { color: var(--accent); }

@media (max-width: 480px) {
  .quiz-wrap { padding: 1.75rem 1.25rem; }
  .question-title { font-size: 22px; }
  .result-level-num { font-size: 80px; }
}
