@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --gold: #c8a14a;
  --gold-light: #e3c98a;
  --cream: #fff6e8;
  --cream-deep: #f7ead3;
  --sage: #a8b59a;
  --green: #55623d;
  --green-deep: #3e492b;
  --ink: #303429;
  --muted: #6e7366;
  --white: #fffdf8;
  --line: rgba(85, 98, 61, 0.16);
  --shadow: 0 24px 70px rgba(73, 67, 43, 0.12);
  --soft-shadow: 0 12px 34px rgba(73, 67, 43, 0.09);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--cream); }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(227, 201, 138, 0.24), transparent 30rem),
    radial-gradient(circle at 94% 84%, rgba(168, 181, 154, 0.24), transparent 32rem),
    linear-gradient(145deg, #fffaf1 0%, var(--cream) 54%, #f5eddc 100%);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { font: inherit; }
button { cursor: pointer; }

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  opacity: 0.58;
}

.ambient-one {
  width: 240px;
  height: 240px;
  top: -110px;
  right: -70px;
  border: 1px solid rgba(200, 161, 74, 0.25);
  box-shadow: 0 0 0 34px rgba(200, 161, 74, 0.05), 0 0 0 68px rgba(200, 161, 74, 0.03);
}

.ambient-two {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: -70px;
  border: 1px solid rgba(85, 98, 61, 0.18);
  box-shadow: 0 0 0 28px rgba(168, 181, 154, 0.08);
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 24px 56px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.brand-mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(80, 66, 31, 0.08));
}

.journey-progress { width: min(340px, 58vw); }
.journey-line { height: 4px; overflow: hidden; border-radius: 999px; background: rgba(85, 98, 61, 0.12); }
.journey-line span { display: block; width: 20%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--green)); transition: width 500ms ease; }
.journey-progress > span { display: block; margin-top: 7px; color: var(--muted); font-size: 0.73rem; letter-spacing: 0.1em; text-align: right; text-transform: uppercase; }

.screen-root { min-height: calc(100vh - 150px); }
.screen { animation: screen-in 520ms cubic-bezier(.2,.8,.2,1) both; }

@keyframes screen-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, .gift-card h3 { font-family: "Playfair Display", Georgia, serif; color: var(--green-deep); }
h1 { max-width: 650px; margin: 16px auto 18px; font-size: clamp(2.7rem, 8vw, 4.9rem); line-height: 0.98; letter-spacing: -0.035em; }
h2 { margin-bottom: 12px; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.06; letter-spacing: -0.025em; }
h3 { margin-bottom: 8px; color: var(--green-deep); }

.eyebrow, .kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spark { display: inline-block; margin-right: 5px; animation: glint 2.2s ease-in-out infinite; }
@keyframes glint { 0%,100% { transform: rotate(0) scale(1); opacity: .65; } 50% { transform: rotate(25deg) scale(1.18); opacity: 1; } }

.lead { max-width: 620px; margin: 0 auto 26px; color: var(--muted); font-size: clamp(1rem, 2.6vw, 1.18rem); line-height: 1.75; }
.lead.compact { max-width: 590px; }

.welcome-screen { padding: 10px 0 30px; text-align: center; }
.hero-emblem { position: relative; width: 126px; height: 126px; margin: 24px auto 10px; display: grid; place-items: center; }
.hero-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(200, 161, 74, 0.38); }
.ring-one { animation: slow-spin 14s linear infinite; border-style: dashed; }
.ring-two { inset: 14px; border-color: rgba(85, 98, 61, 0.22); }
.hero-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: var(--white); background: linear-gradient(145deg, var(--gold), #b68a30); box-shadow: 0 10px 30px rgba(200, 161, 74, 0.3); font-size: 1.6rem; }
@keyframes slow-spin { to { transform: rotate(360deg); } }

.trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; margin: 0 auto 30px; color: var(--green); font-size: 0.78rem; font-weight: 500; }
.trust-row i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.primary-button, .whatsapp-button {
  width: min(100%, 440px);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 16px 32px rgba(62, 73, 43, 0.22);
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.primary-button:hover, .whatsapp-button:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(62, 73, 43, 0.28); }
.primary-button:focus-visible, .whatsapp-button:focus-visible, .map-node:focus-visible, .answer-option:focus-visible, .pillar-node:focus-visible { outline: 3px solid rgba(200, 161, 74, .55); outline-offset: 3px; }
.primary-button span { font-size: 1.25rem; transition: transform 180ms ease; }
.primary-button:hover span { transform: translateX(3px); }
.primary-button:disabled { cursor: not-allowed; opacity: .42; transform: none; box-shadow: none; }

.section-heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.section-heading h2 { margin: 2px 0 0; }
.section-count { flex: 0 0 auto; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(200, 161, 74, 0.36); border-radius: 50%; color: var(--gold); font-family: "Playfair Display", serif; }
.section-intro { max-width: 620px; margin-bottom: 28px; color: var(--muted); line-height: 1.68; }

.key-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 24px;
}
.key-map::before { content: ""; position: absolute; z-index: -1; top: 21px; left: 7%; right: 7%; height: 2px; background: var(--line); }
.map-node { display: grid; justify-items: center; gap: 7px; border: 0; background: transparent; color: var(--muted); padding: 0; }
.map-node .node-dot { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--cream); font-weight: 600; transition: 220ms ease; }
.map-node small { font-size: .68rem; }
.map-node.is-active .node-dot { color: var(--white); border-color: var(--gold); background: linear-gradient(145deg, var(--gold), #b78b32); box-shadow: 0 7px 20px rgba(200,161,74,.28); transform: scale(1.08); }
.map-node.is-active small { color: var(--green-deep); font-weight: 600; }
.map-node.is-done .node-dot { color: var(--white); border-color: var(--green); background: var(--green); }
.map-node:disabled { cursor: default; }

.discovery-card, .method-detail {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(200, 161, 74, 0.22);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.discovery-card::after, .method-detail::after, .gift-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -65px; bottom: -75px; border-radius: 50%; border: 1px solid rgba(200,161,74,.22); box-shadow: 0 0 0 24px rgba(200,161,74,.04); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.line-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; color: var(--green-deep); background: linear-gradient(145deg, rgba(227,201,138,.45), rgba(255,246,232,.5)); font-size: 1.55rem; }
.card-number { color: rgba(85,98,61,.42); font-family: "Playfair Display", serif; font-size: 1.6rem; }
.discovery-card h3, .method-detail h3 { max-width: 580px; font-size: 1.38rem; line-height: 1.25; }
.discovery-card p, .method-detail p { color: var(--muted); line-height: 1.65; }
.reveal-panel { display: none; margin: 18px 0; padding: 16px 18px; border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; background: rgba(227,201,138,.16); animation: reveal-in 360ms ease both; }
.reveal-panel.is-visible { display: block; }
.reveal-panel strong { display: block; margin-bottom: 5px; color: var(--green-deep); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.secondary-button { min-height: 50px; padding: 12px 20px; border: 1px solid rgba(85,98,61,.25); border-radius: 999px; color: var(--green-deep); background: transparent; font-weight: 600; }
.secondary-button:hover { border-color: var(--gold); background: rgba(227,201,138,.14); }
.card-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 22px; }

.method-stage { display: grid; grid-template-columns: 260px 1fr; gap: 22px; align-items: stretch; }
.method-orbit { position: relative; min-height: 410px; display: grid; place-items: center; }
.method-orbit::before { content: "Método\A Belora Láser"; white-space: pre; display: grid; place-items: center; width: 118px; height: 118px; border-radius: 50%; color: var(--white); background: linear-gradient(145deg,var(--green),var(--green-deep)); box-shadow: 0 14px 34px rgba(62,73,43,.22); text-align: center; font-family: "Playfair Display", serif; line-height: 1.15; }
.method-orbit::after { content: ""; position: absolute; width: 246px; height: 246px; border: 1px dashed rgba(200,161,74,.42); border-radius: 50%; animation: slow-spin 28s linear infinite; pointer-events: none; }
.pillar-node { position: absolute; z-index: 2; width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: var(--cream); font-size: 1.15rem; transition: 200ms ease; }
.pillar-node:nth-child(1) { top: 18px; left: 102px; }
.pillar-node:nth-child(2) { top: 113px; right: 2px; }
.pillar-node:nth-child(3) { bottom: 56px; right: 34px; }
.pillar-node:nth-child(4) { bottom: 56px; left: 34px; }
.pillar-node:nth-child(5) { top: 113px; left: 2px; }
.pillar-node.is-active { color: var(--white); border-color: var(--gold); background: var(--gold); box-shadow: 0 8px 20px rgba(200,161,74,.28); transform: scale(1.1); }
.pillar-node.is-done { color: var(--white); border-color: var(--green); background: var(--green); }
.pillar-node:disabled { cursor: default; }
.benefit-chip { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; padding: 14px 16px; border-radius: 16px; color: var(--green-deep); background: rgba(168,181,154,.22); }
.benefit-chip span { color: var(--gold); }

.express-intro-screen, .result-screen, .gift-screen { max-width: 680px; margin: 0 auto; text-align: center; }
.completion-halo { width: 92px; height: 92px; margin: 6px auto 22px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); box-shadow: 0 0 0 12px rgba(168,181,154,.18), 0 16px 32px rgba(85,98,61,.2); font-size: 2rem; }
.express-promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0 14px; }
.express-promise div { min-height: 108px; display: grid; place-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.7); }
.express-promise b { color: var(--gold); font-family: "Playfair Display", serif; font-size: 1.8rem; }
.express-promise span { color: var(--muted); font-size: .74rem; }
.micro-note, .cta-note { color: var(--muted); font-size: .76rem; }
.express-intro-screen .primary-button { margin-top: 16px; }

.question-screen { max-width: 650px; margin: 0 auto; }
.question-progress { display: flex; align-items: center; gap: 12px; margin-bottom: 38px; color: var(--muted); font-size: .76rem; }
.question-progress > div { flex: 1; height: 4px; overflow: hidden; border-radius: 99px; background: var(--line); }
.question-progress i { display: block; width: 33.333%; height: 100%; background: var(--gold); transition: width 300ms ease; }
.answer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 24px 0; }
.answer-option { min-height: 74px; display: flex; align-items: center; gap: 13px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 18px; color: var(--green-deep); background: rgba(255,253,248,.76); text-align: left; transition: 180ms ease; }
.answer-option:hover { border-color: rgba(200,161,74,.5); transform: translateY(-1px); }
.answer-option.is-selected { border-color: var(--gold); background: rgba(227,201,138,.2); box-shadow: 0 8px 20px rgba(200,161,74,.12); }
.answer-option .option-icon { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: var(--green); background: rgba(168,181,154,.2); }
.answer-option .swatch { border: 2px solid rgba(255,255,255,.9); box-shadow: 0 0 0 1px rgba(85,98,61,.2); }
.hidden { display: none !important; }
.question-screen .primary-button { display: flex; margin: 18px auto 0; }

.result-badge, .gift-ribbon { width: fit-content; margin: 0 auto 16px; padding: 8px 13px; border-radius: 999px; color: var(--green-deep); background: rgba(168,181,154,.22); font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.result-badge span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 5px; border-radius: 50%; color: var(--white); background: var(--green); }
.result-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 24px 0; }
.summary-item { padding: 16px 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.75); }
.summary-item span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.summary-item strong { color: var(--green-deep); font-size: .88rem; }
.orientation-card { display: flex; gap: 15px; align-items: flex-start; margin: 20px 0; padding: 22px; border-radius: 22px; background: linear-gradient(145deg, rgba(85,98,61,.98), rgba(62,73,43,.98)); color: var(--white); text-align: left; box-shadow: var(--soft-shadow); }
.orientation-icon { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--green-deep); background: var(--gold-light); font-size: 1.3rem; }
.orientation-card h3 { color: var(--gold-light); }
.orientation-card p { margin: 0; color: rgba(255,255,255,.8); line-height: 1.6; font-size: .9rem; }
.disclaimer { margin: 18px auto 26px; color: var(--muted); font-size: .8rem; line-height: 1.6; }

.gift-ribbon { color: #765a1d; background: rgba(227,201,138,.32); }
.gift-card { position: relative; overflow: hidden; margin: 24px 0 30px; padding: 28px; border: 1px solid rgba(200,161,74,.32); border-radius: 28px; background: linear-gradient(145deg, rgba(255,253,248,.92), rgba(255,246,232,.85)); box-shadow: var(--shadow); }
.gift-topline { margin-bottom: 7px; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.gift-card h3 { max-width: 530px; margin: 0 auto 16px; font-size: clamp(1.45rem,4vw,2rem); }
.gift-card p { max-width: 500px; margin: 16px auto 0; color: var(--muted); line-height: 1.6; }
.free-seal { width: fit-content; margin: 0 auto; padding: 7px 12px; border-radius: 999px; color: var(--white); background: var(--green); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.free-seal span { color: var(--gold-light); font-weight: 600; }
.benefits-title { margin-bottom: 16px; font-family: "DM Sans",sans-serif; font-size: 1.08rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.benefit-item { min-height: 118px; display: grid; place-content: center; gap: 8px; padding: 15px 11px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.7); animation: reveal-in 360ms ease both; }
.benefit-item:nth-child(2) { animation-delay: 60ms; }.benefit-item:nth-child(3) { animation-delay: 120ms; }.benefit-item:nth-child(4) { animation-delay: 180ms; }.benefit-item:nth-child(5) { animation-delay: 240ms; }.benefit-item:nth-child(6) { animation-delay: 300ms; }
.benefit-item b { color: var(--gold); font-size: 1.25rem; }
.benefit-item strong { color: var(--green-deep); font-size: .8rem; }
.benefit-item span { color: var(--muted); font-size: .7rem; line-height: 1.35; }
.decision-note { display: flex; align-items: center; gap: 12px; margin: 22px 0; padding: 14px 17px; border-radius: 16px; color: var(--green-deep); background: rgba(168,181,154,.2); text-align: left; }
.decision-note > span { flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--white); background: var(--green); }
.decision-note p { margin: 0; font-size: .82rem; line-height: 1.5; }
.whatsapp-button { width: 100%; background: linear-gradient(135deg,#3e704b,#2f5c3c); }
.whatsapp-dot { color: #8ee59f; font-size: 1.2rem; }
.cta-note { margin-top: 10px; }

@media (max-width: 700px) {
  .app-shell { padding: 14px 16px 44px; }
  .app-header { margin-bottom: 18px; }
  .brand-mark { width: 66px; height: 66px; }
  .journey-progress { width: 60vw; }
  .section-heading { gap: 12px; }
  .section-count { width: 40px; height: 40px; }
  .key-map { grid-template-columns: repeat(6, 44px); overflow: hidden; justify-content: space-between; }
  .map-node small { display: none; }
  .map-node .node-dot { width: 38px; height: 38px; }
  .key-map::before { top: 18px; }
  .discovery-card, .method-detail { min-height: 340px; padding: 22px; border-radius: 24px; }
  .method-stage { grid-template-columns: 1fr; }
  .method-orbit { min-height: 280px; }
  .method-orbit::after { width: 220px; height: 220px; }
  .pillar-node:nth-child(1) { top: 0; left: calc(50% - 28px); }
  .pillar-node:nth-child(2) { top: 66px; right: calc(50% - 128px); }
  .pillar-node:nth-child(3) { bottom: 18px; right: calc(50% - 104px); }
  .pillar-node:nth-child(4) { bottom: 18px; left: calc(50% - 104px); }
  .pillar-node:nth-child(5) { top: 66px; left: calc(50% - 128px); }
  .express-promise { gap: 7px; }
  .express-promise div { min-height: 94px; }
  .answer-grid { grid-template-columns: 1fr; }
  .answer-option { min-height: 64px; }
  .result-summary { grid-template-columns: 1fr; }
  .summary-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; text-align: left; }
  .summary-item span { margin: 0; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 380px) {
  h1 { font-size: 2.45rem; }
  h2 { font-size: 1.85rem; }
  .trust-row { max-width: 280px; }
  .key-map { grid-template-columns: repeat(6, 36px); }
  .map-node .node-dot { width: 34px; height: 34px; font-size: .76rem; }
  .key-map::before { top: 16px; }
  .express-promise span { font-size: .65rem; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
