:root {
  --blue-900: #06134b;
  --blue-800: #052d79;
  --blue-700: #006fd6;
  --blue-600: #0989ed;
  --blue-400: #74c3ff;
  --blue-200: #d8efff;
  --blue-100: #edf8ff;
  --white: #ffffff;
  --ink: #071044;
  --muted: #3e5b8c;
  --card: rgba(255,255,255,.76);
  --border: rgba(0, 111, 214, .18);
  --shadow: 0 20px 55px rgba(0, 91, 172, .16);
  --soft-shadow: 0 12px 35px rgba(1, 71, 153, .12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(255,255,255,.98) 0 7%, transparent 22%),
    radial-gradient(circle at 85% 11%, rgba(255,255,255,.9) 0 7%, transparent 23%),
    linear-gradient(180deg, #dff3ff 0%, #edf8ff 48%, #f7fbff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background:
    radial-gradient(circle at 9% 36%, rgba(255,255,255,.76) 0 5%, transparent 11%),
    radial-gradient(circle at 88% 45%, rgba(255,255,255,.78) 0 7%, transparent 14%),
    radial-gradient(circle at 60% 84%, rgba(160,219,255,.5) 0 10%, transparent 29%);
}
body::after {
  opacity: .42;
  background-image:
    linear-gradient(35deg, transparent 0 92%, rgba(255,255,255,.8) 92% 94%, transparent 94%),
    linear-gradient(145deg, transparent 0 92%, rgba(255,255,255,.65) 92% 94%, transparent 94%);
  background-size: 360px 180px, 420px 220px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.section-shell {
  width: min(1170px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  padding: 0 0 20px;
}
.nav-shell {
  width: min(1170px, calc(100% - 56px));
  min-height: 82px;
  margin: 0 auto;
  padding: 0 28px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.brand {
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: .85;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: #0563ae;
  letter-spacing: -.05em;
}
.brand i {
  position: absolute;
  top: -18px;
  left: 84px;
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  color: #007be0;
  font-size: 1.25rem;
  transform: rotate(-8deg);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  color: #06134b;
  font-weight: 700;
  font-size: 1.03rem;
}
.nav-links a { transition: color .2s ease, transform .2s ease; }
.nav-links a:hover { color: var(--blue-700); transform: translateY(-1px); }
.nav-heart,
.mobile-menu {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-700);
  border: 1px solid rgba(8,137,237,.14);
  box-shadow: 0 10px 22px rgba(0,88,180,.08);
  font-size: 2rem;
  line-height: 1;
}
.mobile-menu { display: none; cursor: pointer; font-size: 1.4rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  align-items: center;
  min-height: 470px;
  padding-top: 20px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30px -4vw -80px;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 38%, rgba(113, 191, 250, .34), transparent 26%),
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.9), transparent 16%),
    linear-gradient(180deg, rgba(191,230,255,.48), rgba(255,255,255,0));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(0,123,224,.16);
  color: var(--blue-700);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.hero h1,
.section-heading h2,
.closing h2 {
  margin: 22px 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.05em;
  color: #050b3f;
}
.hero h1 { font-size: clamp(3.1rem, 7vw, 5.8rem); max-width: 630px; }
.hero h1 span,
.section-heading h2 span,
.closing h2 span { color: var(--blue-600); font-family: 'Nunito', sans-serif; letter-spacing: 0; }
.hero p {
  max-width: 500px;
  margin: 0 0 28px;
  color: #23477e;
  font-size: 1.18rem;
  line-height: 1.55;
}
.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 27px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #12a7ff, #007bdb);
  box-shadow: 0 16px 28px rgba(0,112,214,.32), inset 0 1px 0 rgba(255,255,255,.36);
}
.btn-ghost {
  background: transparent;
  color: #06134b;
}
.play-dot {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 12px 26px rgba(0,91,172,.12);
  font-size: .9rem;
}
.btn-ghost.blue { color: var(--blue-700); text-decoration: underline; text-underline-offset: 3px; }

.hero-art {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: min(510px, 92%);
  height: min(270px, 58%);
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 55% 45% 24% 28%;
  background: radial-gradient(circle at 20% 70%, #fff 0 18%, rgba(255,255,255,.82) 35%, transparent 70%);
  filter: blur(.2px);
}
.hero-heart {
  position: absolute;
  width: 285px;
  height: 260px;
  top: 28px;
  right: 74px;
  background: linear-gradient(180deg, #72c6ff, #38a8ef);
  clip-path: path("M142 247C113 217 20 161 20 85C20 40 55 14 91 14C113 14 131 26 142 44C153 26 171 14 193 14C229 14 265 40 265 85C265 161 172 217 142 247Z");
  opacity: .72;
  filter: drop-shadow(0 24px 32px rgba(0,116,214,.14));
}
.hero-art img {
  position: relative;
  z-index: 2;
  width: min(480px, 95%);
  border-radius: 28px;
  mix-blend-mode: normal;
  filter: drop-shadow(0 24px 36px rgba(38,89,139,.16));
}
.note {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,.9);
  font-size: 2rem;
  text-shadow: 0 8px 22px rgba(0,105,207,.12);
}
.note-a { top: 58px; left: 38px; transform: rotate(-13deg); }
.note-b { top: 90px; right: 36px; transform: rotate(10deg); }
.note-c { bottom: 70px; right: 12px; transform: rotate(-8deg); }

.benefit-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 28px;
  margin-top: 8px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.benefit-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
}
.benefit-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: linear-gradient(180deg, #f8fcff, #dcedff);
  border: 1px solid rgba(0,123,224,.1);
  font-size: 1.9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.benefit-item h3 { margin: 0 0 6px; font-size: .95rem; color: var(--blue-900); }
.benefit-item p { margin: 0; color: #466699; font-size: .88rem; line-height: 1.35; }

.examples,
.process,
.testimonials,
.faq,
.closing { position: relative; }
.examples { padding: 44px 0 12px; }
.examples::before,
.testimonials::before {
  content: "♪  ♫      ♡      ♬";
  position: absolute;
  top: 54px;
  left: -4vw;
  right: -4vw;
  color: rgba(255,255,255,.82);
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: .9em;
  text-align: center;
  z-index: -1;
  transform: rotate(-5deg);
}
.section-heading h2 { font-size: clamp(2.25rem, 5vw, 3.65rem); }
.section-heading p {
  margin: 0;
  color: #264b84;
  font-size: 1rem;
  line-height: 1.45;
}
.center { text-align: center; }
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.audio-card {
  display: grid;
  grid-template-columns: 134px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 152px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}
.audio-card img {
  width: 134px;
  height: 124px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 18px rgba(0,87,166,.1);
}
.audio-info h3 { margin: 0 0 4px; color: #071044; font-size: 1.1rem; }
.audio-info p { margin: 0 0 18px; color: #2d69aa; font-size: .85rem; font-weight: 800; }
.player-row { display: flex; align-items: center; gap: 9px; }
.play-button {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(180deg, #16a6ff, #007bdc);
  color: #fff;
  box-shadow: 0 9px 18px rgba(0,112,214,.28);
  font-size: .72rem;
}
.wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  color: #a8d8fb;
}
.wave i {
  display: block;
  width: 2px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
  opacity: .9;
}
.wave i:nth-child(2n) { height: 14px; }
.wave i:nth-child(3n) { height: 5px; }
.audio-card.is-playing .wave { color: var(--blue-700); }
.time { color: #6b86ad; font-size: .75rem; white-space: nowrap; }
.cta-row { margin-top: 22px; }

.process {
  margin-top: 30px;
  padding: 28px 48px 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 83% 8%, rgba(255,255,255,.85), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(220,239,255,.58));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}
.process::after {
  content: "♡  ♪   ♫";
  position: absolute;
  top: 40px;
  right: 90px;
  color: rgba(255,255,255,.92);
  font-size: 3rem;
  letter-spacing: .5em;
  transform: rotate(-8deg);
}
.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  margin-top: 28px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 83px;
  left: 13%;
  right: 13%;
  height: 2px;
  z-index: -1;
  background: repeating-linear-gradient(90deg, rgba(0,123,224,.25) 0 7px, transparent 7px 14px);
}
.step-card {
  position: relative;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.96);
  box-shadow: 0 14px 32px rgba(0,91,172,.12);
}
.step-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 8px 18px rgba(0,91,172,.14);
  font-size: 1.7rem;
  line-height: .8;
}
.step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #9fd5ff, #5ab1f2);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
}
.step-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #edf8ff, #dcefff);
  color: var(--blue-700);
  border: 1px solid rgba(0,123,224,.12);
  font-size: 2.4rem;
}
.step-card h3 { margin: 0 0 4px; color: var(--blue-900); font-size: .97rem; line-height: 1.15; }
.step-card p { margin: 0; color: #38609a; font-size: .88rem; line-height: 1.15; }

.testimonials { padding: 36px 0 26px; }
.testimonials-title { width: min(580px, 100%); margin-left: 120px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(840px, 100%);
  margin: 26px auto 0;
}
.testimonial-card {
  padding: 18px 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--soft-shadow);
}
.testimonial-top { display: flex; align-items: center; gap: 12px; }
.testimonial-top img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 9px 18px rgba(0,91,172,.14);
}
.testimonial-top h3 { margin: 0 0 2px; font-size: 1rem; }
.testimonial-top p { margin: 0; color: #2d69aa; font-weight: 800; font-size: .76rem; }
.stars { color: #ffb400; letter-spacing: 3px; margin: 12px 0; font-size: .95rem; }
blockquote { margin: 0; color: #245084; font-size: .82rem; line-height: 1.35; font-weight: 700; }

.faq {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 44px 32px;
  margin-top: 4px;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--soft-shadow);
}
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,123,224,.14);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--blue-900);
  font-weight: 900;
  font-size: .93rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "⌄";
  margin-left: auto;
  color: var(--blue-700);
  font-size: 1.1rem;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #3db1ff, #027de1);
  color: #fff;
  font-weight: 900;
}
.faq-item p { margin: 0; padding: 0 18px 14px 52px; color: #315b91; font-size: .86rem; line-height: 1.45; }

.closing {
  min-height: 160px;
  margin: 22px auto 58px;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 10% 24%, rgba(255,255,255,.7), transparent 18%),
    radial-gradient(circle at 84% 95%, rgba(255,255,255,.84), transparent 25%),
    linear-gradient(135deg, #7bc4ff, #d6ecff 52%, #b9d8ff);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.closing::before {
  content: "♡      ♪      ♫      ♡";
  position: absolute;
  inset: 20px 20px auto;
  color: rgba(255,255,255,.86);
  font-size: 2.3rem;
  letter-spacing: .72em;
  transform: rotate(-4deg);
}
.closing-content { position: relative; z-index: 2; padding: 26px; }
.closing h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 3.2vw, 2.45rem); }
.closing p { margin: 0 0 18px; color: #18457c; }
.closing-actions { justify-content: center; }

@media (max-width: 980px) {
  .section-shell, .nav-shell { width: min(100% - 28px, 760px); }
  .nav-shell { min-height: 72px; padding: 0 16px 0 22px; }
  .mobile-menu { display: inline-grid; }
  .nav-links {
    position: absolute;
    top: 86px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-heart { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-copy { order: 1; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { order: 2; min-height: 330px; margin-top: 12px; }
  .hero-heart { right: 18%; }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .example-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .audio-card { width: min(520px, 100%); margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid::before, .step-card::after { display: none !important; }
  .testimonials-title { margin-left: 0; text-align: center; }
  .faq { grid-template-columns: 1fr; padding: 24px; }
}

@media (max-width: 640px) {
  .site-header { top: 10px; }
  .brand { font-size: 1.55rem; }
  .brand i { left: 70px; top: -14px; }
  .hero { padding-top: 4px; }
  .hero h1 { font-size: clamp(2.8rem, 16vw, 4.25rem); }
  .hero p { font-size: 1rem; }
  .hero-actions, .closing-actions { flex-direction: column; gap: 10px; }
  .btn { width: 100%; min-height: 52px; }
  .btn-ghost { width: auto; }
  .benefit-bar { grid-template-columns: 1fr; padding: 20px; border-radius: 18px; }
  .benefit-item { grid-template-columns: 54px 1fr; }
  .benefit-icon { width: 54px; height: 54px; font-size: 1.6rem; }
  .audio-card { grid-template-columns: 94px 1fr; gap: 14px; border-radius: 20px; }
  .audio-card img { width: 94px; height: 96px; border-radius: 16px; }
  .player-row { flex-wrap: wrap; }
  .wave { min-width: 100px; }
  .process { padding: 24px 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .faq { padding: 18px; }
  .faq-item p { padding-left: 18px; }
  .closing { margin-bottom: 34px; }
}


/* =========================================================
   FORMULARIO POPUP PROGRESIVO — FUSIÓN LANDING + FORMULARIO
   ========================================================= */
button.btn{border:0;cursor:pointer;font-family:inherit}
button.nav-heart{cursor:pointer;font-family:inherit}
body.peludo-modal-open{overflow:hidden}
.peludo-modal{display:none;position:fixed;inset:0;z-index:9999}
.peludo-modal.is-open{display:block}
.peludo-modal-backdrop{position:absolute;inset:0;background:rgba(3,15,46,.55);backdrop-filter:blur(8px)}
.peludo-modal-panel{
  position:absolute;top:18px;bottom:18px;left:50%;transform:translateX(-50%);
  width:min(820px,calc(100% - 28px));overflow:auto;overscroll-behavior:contain;
  border-radius:28px;background:linear-gradient(180deg,#fafdff,#edf7ff);
  border:1px solid rgba(255,255,255,.92);box-shadow:0 30px 100px rgba(4,33,74,.34)
}
.peludo-modal-header{position:sticky;top:0;z-index:6;display:flex;align-items:center;justify-content:space-between;padding:18px 22px 10px;background:rgba(250,253,255,.92);backdrop-filter:blur(16px)}
.peludo-modal-brand{position:relative;display:inline-flex;gap:0;font-family:'Playfair Display',Georgia,serif;font-size:1.45rem;font-weight:800;letter-spacing:-.05em;color:#050b3f}
.peludo-modal-brand span:nth-child(2){color:var(--blue-700)}
.peludo-modal-brand i{position:absolute;right:-17px;top:-8px;color:#35aaf3;font-family:'Nunito',sans-serif;font-size:1rem;font-style:normal}
.peludo-modal-close{width:42px;height:42px;border-radius:50%;border:1px solid rgba(0,123,224,.15);background:#fff;color:#123e76;font-size:1.8rem;line-height:1;cursor:pointer;box-shadow:0 8px 18px rgba(0,91,172,.08)}
.peludo-progress-wrap{position:sticky;top:70px;z-index:5;padding:8px 22px 12px;background:rgba(250,253,255,.92);backdrop-filter:blur(16px)}
.peludo-progress-copy{display:flex;align-items:center;justify-content:space-between;gap:15px;color:#52729e;font-size:.78rem}
.peludo-progress-copy strong{color:#0b3972}
.peludo-progress{height:6px;border-radius:999px;background:#dcecf8;overflow:hidden;margin-top:8px}
.peludo-progress span{display:block;width:10%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#24b2ff,#047edc);transition:width .22s ease}
.peludo-wizard{min-height:calc(100% - 112px);padding:34px 28px 26px;display:flex;flex-direction:column}
.peludo-step{display:none;width:min(690px,100%);margin:auto;animation:peludoStepIn .2s ease}
.peludo-step.is-active{display:block}
@keyframes peludoStepIn{from{opacity:0;transform:translateY(7px)}to{opacity:1;transform:none}}
.peludo-step-copy{margin-bottom:26px}
.peludo-mini-label{display:inline-block;margin-bottom:9px;color:var(--blue-700);font-size:.76rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.peludo-step-copy h2,.peludo-success h2{margin:0 0 10px;font-family:'Playfair Display',Georgia,serif;color:#050b3f;font-size:clamp(2rem,5vw,3rem);line-height:1.03;letter-spacing:-.04em}
.peludo-step-copy p{margin:0;color:#41648f;line-height:1.5}
.peludo-fields-two{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.peludo-field{display:block;margin-bottom:16px}
.peludo-field>span,.peludo-choice-group legend{display:block;margin-bottom:8px;color:#123e76;font-size:.87rem;font-weight:900}
.peludo-field b{color:var(--blue-700)}
.peludo-field input,.peludo-field textarea{
  width:100%;padding:15px 16px;border-radius:16px;border:1.5px solid rgba(20,111,184,.22);background:#fff;color:#0b2447;outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);transition:border-color .16s,box-shadow .16s
}
.peludo-field textarea{min-height:190px;resize:vertical;line-height:1.55}
.peludo-field input:focus,.peludo-field textarea:focus{border-color:#0788e5;box-shadow:0 0 0 4px rgba(7,136,229,.11)}
.peludo-field small{display:block;margin-top:7px;color:#6a84a6;font-size:.76rem;line-height:1.35}
.peludo-choice-group{border:0;padding:0;margin:0 0 24px}
.peludo-choice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:11px}
.peludo-choice{position:relative;min-height:112px;padding:16px;border-radius:18px;border:1.5px solid rgba(19,105,176,.17);background:rgba(255,255,255,.88);cursor:pointer;transition:transform .16s,border-color .16s,box-shadow .16s,background .16s}
.peludo-choice:hover{transform:translateY(-2px);border-color:rgba(7,136,229,.38)}
.peludo-choice input{position:absolute;opacity:0;pointer-events:none}
.peludo-choice>span,.peludo-choice>strong,.peludo-choice>small{display:block}
.peludo-choice>span{font-size:1.5rem;margin-bottom:14px}
.peludo-choice>strong{color:#0a3268;font-size:.9rem}
.peludo-choice>small{margin-top:5px;color:#6683a6;font-size:.75rem;line-height:1.25}
.peludo-choice:has(input:checked){border-color:#0788e5;background:#f2faff;box-shadow:0 0 0 4px rgba(7,136,229,.10),0 12px 28px rgba(0,93,167,.09)}
.state-grid{grid-template-columns:repeat(2,1fr)}
.peludo-choice-wide{min-height:105px}
.tone-grid .peludo-tone{min-height:150px}
.genre-status{padding:15px 16px;margin-bottom:14px;border-radius:16px;background:#fff;border:1px solid rgba(0,123,224,.13)}
.genre-status>div:first-child{display:flex;justify-content:space-between;gap:15px;color:#1a487d;font-size:.82rem}
.genre-status>div:first-child span{color:#6683a6}
.selected-genres{display:flex;flex-wrap:wrap;gap:7px;margin-top:10px}
.selected-genres .empty{color:#8299b6;font-size:.78rem}
.genre-tabs{display:flex;gap:8px;overflow:auto;padding-bottom:4px;margin-bottom:14px}
.genre-tab{border:1px solid rgba(0,123,224,.17);background:#fff;color:#245687;border-radius:999px;padding:10px 15px;font-weight:900;cursor:pointer;white-space:nowrap}
.genre-tab.is-active{background:#0b83df;color:#fff;border-color:#0b83df;box-shadow:0 9px 20px rgba(0,123,224,.18)}
.genre-options{display:flex;flex-wrap:wrap;gap:8px;max-height:300px;overflow:auto;padding:3px 3px 12px}
.genre-pill{border:1.5px solid rgba(0,123,224,.16);background:#fff;color:#295987;border-radius:999px;padding:10px 13px;font-weight:800;font-size:.82rem;cursor:pointer;transition:.15s}
.genre-pill:hover{border-color:#0788e5}
.genre-pill.is-selected{background:#072f64;color:#fff;border-color:#072f64}
.selected-pill{display:inline-flex;align-items:center;gap:5px;border:0;background:#eaf6ff;color:#0b5c9b;border-radius:999px;padding:7px 10px;font-weight:800;font-size:.75rem;cursor:pointer}
.custom-genre-box{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:end;margin-top:18px;padding:16px;border-radius:18px;background:rgba(255,255,255,.66);border:1px solid rgba(0,123,224,.12)}
.custom-genre-box .peludo-field{margin:0}
.peludo-secondary-btn,.peludo-back-btn,.peludo-next-btn{border:0;cursor:pointer;font-family:inherit;font-weight:900}
.peludo-secondary-btn{min-height:48px;padding:0 18px;border-radius:14px;background:#e4f4ff;color:#0c5f9b}
.peludo-summary{border-radius:20px;overflow:hidden;border:1px solid rgba(0,123,224,.13);background:#fff}
.peludo-summary-row{display:grid;grid-template-columns:155px 1fr;gap:16px;padding:14px 16px;border-bottom:1px solid #eaf2f8}
.peludo-summary-row:last-child{border-bottom:0}
.peludo-summary-row strong{color:#6683a6;font-size:.77rem}
.peludo-summary-row span{color:#143d70;white-space:pre-wrap;font-size:.86rem}
.peludo-form-error{min-height:22px;margin-top:12px;color:#b22f4d;font-size:.82rem;font-weight:800}
.peludo-wizard-actions{position:sticky;bottom:-26px;display:flex;justify-content:space-between;gap:12px;margin-top:auto;padding:38px 0 0;background:linear-gradient(180deg,rgba(237,247,255,0),#edf7ff 34%)}
.peludo-back-btn,.peludo-next-btn{min-height:52px;border-radius:999px;padding:0 24px;text-decoration:none;display:inline-flex;align-items:center;justify-content:center}
.peludo-back-btn{border:1px solid rgba(0,123,224,.18);background:#fff;color:#174d84}
.peludo-next-btn{background:linear-gradient(180deg,#14a8ff,#007bdc);color:#fff;box-shadow:0 13px 26px rgba(0,112,214,.26)}
.peludo-next-btn:disabled{opacity:.6;cursor:wait}
.peludo-success{width:min(600px,100%);margin:auto;padding:70px 28px;text-align:center}
.peludo-success p{color:#4f6f98;line-height:1.55}
.peludo-success-icon{width:72px;height:72px;margin:0 auto 22px;display:grid;place-items:center;border-radius:50%;background:#e1f8ec;color:#158457;font-size:2rem;font-weight:900}
.peludo-wa-btn{width:100%;margin-top:14px;background:#25D366;box-shadow:0 13px 28px rgba(37,211,102,.22)}
.peludo-close-success{width:100%;margin-top:10px}
@media(max-width:700px){
  .peludo-modal-panel{inset:0;transform:none;width:100%;border-radius:0}
  .peludo-modal-header{padding:13px 15px 6px}
  .peludo-progress-wrap{top:60px;padding:7px 15px 10px}
  .peludo-wizard{padding:28px 15px 16px;min-height:calc(100% - 98px)}
  .peludo-fields-two,.peludo-choice-grid,.state-grid{grid-template-columns:1fr 1fr}
  .tone-grid{grid-template-columns:1fr}
  .peludo-choice{min-height:100px}
  .custom-genre-box{grid-template-columns:1fr}
  .peludo-secondary-btn{width:100%}
  .peludo-summary-row{grid-template-columns:1fr;gap:4px}
  .peludo-wizard-actions{bottom:-16px;padding-top:34px}
  .peludo-wizard-actions button{flex:1}
}
@media(max-width:440px){
  .peludo-fields-two,.peludo-choice-grid,.state-grid{grid-template-columns:1fr}
  .peludo-field textarea{min-height:175px}
  .peludo-step-copy h2,.peludo-success h2{font-size:2rem}
}
