@font-face {
  font-family: 'FuenteSalon';
  src: url('../../BeautySalonScriptRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

:root {
  --blue: #70d6ff;
  --pink: #ff70a6;
  --orange: #ff9770;
  --yellow: #ffd670;
  --lime: #e9ff70;
  --ink: #111;
  --ink-soft: #555;
  --bg: #fff;
  --border: #e8e8e8;
  --error: #e03c3c;
  --ok: #3dbb6a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  padding-top: 80px;
}

/* OFFER / CONVERSION */
.offer-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
  color: #111;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-bottom: 2px solid rgba(0, 0, 0, .08);
}

.offer-top strong {
  background: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 0 4px;
  display: inline-block;
}

nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: none;
}

.hero {
  border-top: 1.5px solid var(--border);
  padding-top: 172px;
}

.offer-price-card {
  max-width: 640px;
  margin: 0 auto 10px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .10);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  text-align: left;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
}

.offer-card-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

.offer-card-copy {
  margin-top: 7px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.offer-price {
  text-align: center;
  background: #fafaf8;
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 14px 18px;
  min-width: 150px;
}

.old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
}

.new-price {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
}

.new-price span {
  font-size: 14px;
  font-weight: 700;
}

.price-note {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -34px auto 44px;
}

.trust-pill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* PRICING */
.pricing {
  padding: 90px 40px;
  background: #fff;
  border-top: 1.5px solid var(--border);
}

.pricing-inner {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.pricing .section-title {
  max-width: none;
  margin: 0 auto 16px;
}

.pricing-subtitle {
  max-width: 680px;
  margin: 0 auto 38px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 30px;
  padding: 34px 28px 30px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.price-card.featured {
  border-color: var(--pink);
  box-shadow: 0 16px 44px rgba(255, 112, 166, .18);
  transform: translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
}

.plan-name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.plan-price .amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.plan-price .currency {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-before {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 22px;
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
}

.plan-list li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.plan-list li::before {
  content: '✓';
  color: var(--ok);
  font-weight: 900;
  margin-right: 8px;
}

.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid var(--ink);
  transition: all .2s;
}

.plan-cta:hover {
  background: #fff;
  color: var(--ink);
}

.plan-cta.alt {
  background: var(--pink);
  border-color: var(--pink);
}

.plan-small {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #999;
}

.form-offer-box {
  background: #fff7dd;
  border: 2px solid var(--yellow);
  border-radius: 22px;
  padding: 18px 20px;
  margin-bottom: 24px;
  text-align: center;
}

.form-offer-box strong {
  color: var(--ink);
}

.form-offer-box span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* NAV */
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}

.nav-logo span {
  color: var(--pink);
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: #333;
}

/* HERO */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 40px;
  position: relative;
  overflow: hidden;
  background: #fafaf8;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 100px;
  padding: 6px 18px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 16px rgba(255, 214, 112, .3);
  margin-bottom: 28px;
  margin-top: 12px;
}

.hero-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(.8);
  }
}

.hero h1 {
  font-family: 'FuenteSalon', serif;
  font-size: clamp(75px, 8vw, 110px);
  font-weight: 100;
  line-height: .8;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--pink);
}

.hero p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero-primary,
.btn-hero-ghost {
  padding: 15px 34px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
}

.btn-hero-primary:hover {
  background: #fff;
  color: var(--ink);
}

.btn-hero-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
}

.btn-hero-ghost:hover {
  border-color: var(--ink);
}

.chars-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.char-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
  flex: 0 0 auto;
}

.char-slot {
  width: 120px;
  height: 140px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .3s;
  cursor: default;
  overflow: hidden;
}

.char-slot:hover {
  transform: translateY(-8px) rotate(3deg);
}

.char-slot.c1 {
  background: var(--orange);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}

.char-slot.c2 {
  background: var(--blue);
  border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
  height: 160px;
}

.char-slot.c3 {
  background: var(--lime);
  border-radius: 45% 55% 60% 40% / 55% 50% 45% 55%;
  height: 150px;
}

.char-slot.c4 {
  background: var(--pink);
  border-radius: 60% 40% 45% 55% / 50% 55% 45% 50%;
}

.char-slot.c5 {
  background: var(--yellow);
  border-radius: 50% 50% 42% 58% / 55% 45% 55% 45%;
  height: 145px;
}

.char-placeholder {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, .2);
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  line-height: 1.4;
}

.char-placeholder img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 140px;
}

.char-name {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.char-desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* HOW */
.how {
  background: #fafaf8;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 100px 40px;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1.5px solid var(--pink);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
  text-align: center;
}

.section-title {
  font-family: 'FuenteSalon', serif;
  font-size: clamp(60px, 4.5vw, 75px);
  font-weight: 100;
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 60px;
  max-width: 520px;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.how .section-title {
  margin: 0 auto 60px;
  max-width: none;
}

.steps-row {
  display: flex;
  gap: 0;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(1 / 6 * 100%);
  right: calc(1 / 6 * 100%);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 12px);
}

.hstep {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  position: relative;
}

.hstep-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  border: 2px solid var(--ink);
  position: relative;
  z-index: 1;
}

.hstep:nth-child(1) .hstep-num { background: var(--blue); }
.hstep:nth-child(2) .hstep-num { background: var(--pink); color: #fff; }
.hstep:nth-child(3) .hstep-num { background: var(--orange); color: #fff; }
.hstep:nth-child(4) .hstep-num { background: var(--lime); }

.hstep-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.hstep-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 300;
}

/* FORM SECTION */
.form-section {
  padding: 100px 40px;
  max-width: 760px;
  margin: 0 auto;
}

.form-section .section-title {
  margin: 0 auto 8px;
  text-align: center;
}

.form-section .section-label {
  margin: 0 auto 20px;
  text-align: center;
}

.form-section .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.6;
}

.fcard {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.prog-line {
  height: 4px;
  background: var(--border);
}

.prog-fill {
  height: 100%;
  border-radius: 2px;
  transition: width .45s cubic-bezier(.4, 0, .2, 1), background .45s;
}

.steps-bar {
  display: flex;
  border-bottom: 2px solid var(--border);
  background: #fafaf8;
}

.step-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 6px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  border-right: 2px solid var(--border);
  transition: background .2s;
}

.step-tab:last-child {
  border-right: none;
}

.step-tab.active {
  background: #fff;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: all .3s;
  background: #fff;
}

.step-tab.active[data-step="1"] .step-num { background: var(--blue); border-color: var(--blue); color: var(--ink); }
.step-tab.active[data-step="2"] .step-num { background: var(--pink); border-color: var(--pink); color: #fff; }
.step-tab.active[data-step="3"] .step-num { background: var(--orange); border-color: var(--orange); color: #fff; }
.step-tab.active[data-step="4"] .step-num { background: var(--lime); border-color: var(--lime); color: var(--ink); }

.step-tab.done .step-num {
  background: var(--ok);
  border-color: var(--ok);
  color: #fff;
  font-size: 14px;
}

.step-tab.done .step-num::before {
  content: '✓';
}

.step-tab.done .step-num span {
  display: none;
}

.step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.step-tab.active .step-label {
  color: var(--ink);
}

.fpanel {
  display: none;
  padding: 36px 40px 32px;
  animation: fadeUp .3s ease;
}

.fpanel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-accent {
  height: 4px;
  border-radius: 2px;
  width: 48px;
  margin-bottom: 20px;
}

.accent-blue { background: var(--blue); }
.accent-pink { background: var(--pink); }
.accent-orange { background: var(--orange); }
.accent-lime { background: var(--lime); }

.panel-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.panel-title {
  font-family: 'Poppins', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.panel-subtitle {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}

.input-wrap {
  position: relative;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  padding: 11px 36px 11px 13px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: #fafaf8;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(112, 214, 255, .2);
  background: #fff;
}

input.valid,
select.valid {
  border-color: var(--ok) !important;
}

input.invalid,
select.invalid {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(224, 60, 60, .1) !important;
}

input::placeholder {
  color: #ccc;
}

.field-icon {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  pointer-events: none;
}

.field-error {
  font-size: 11px;
  color: var(--error);
  font-weight: 500;
  min-height: 15px;
}

.hint {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 300;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px 4px 8px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.count-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.badge-pink { background: #fff0f5; color: #c0305e; }
.badge-pink .dot { background: var(--pink); }
.badge-orange { background: #fff3ef; color: #c05030; }
.badge-orange .dot { background: var(--orange); }
.badge-lime { background: #f6ffe0; color: #5a7020; }
.badge-lime .dot { background: #a8c430; }

.tag-instruction {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 300;
}

.tag-instruction strong {
  font-weight: 600;
  color: var(--ink);
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 8px 15px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: #fafaf8;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s;
  user-select: none;
  line-height: 1;
}

.tag:hover:not(.disabled) {
  border-color: #ccc;
  background: #fff;
  color: var(--ink);
}

.tag.sel-pink {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  font-weight: 500;
}

.tag.sel-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  font-weight: 500;
}

.tag.sel-lime {
  background: var(--lime);
  border-color: #c8e050;
  color: var(--ink);
  font-weight: 600;
}

.tag.disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px solid var(--border);
}

.btn {
  padding: 11px 26px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.btn-blue { background: var(--blue); border-color: var(--blue); color: var(--ink); }
.btn-pink { background: var(--pink); border-color: var(--pink); color: #fff; }
.btn-orange { background: var(--orange); border-color: var(--orange); color: #fff; }

.btn-blue:hover,
.btn-pink:hover,
.btn-orange:hover {
  filter: brightness(.93);
}

.btn-lime {
  background: var(--lime);
  border-color: #c8e050;
  color: var(--ink);
  font-size: 15px;
  padding: 13px 34px;
}

.btn-lime:hover {
  filter: brightness(.95);
}

.btn:disabled {
  opacity: .38;
  cursor: default;
  pointer-events: none;
}

.step-info {
  font-size: 12px;
  color: #bbb;
}

/* CONSENT */
.consent-field {
  margin-top: 18px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--pink);
}

.consent-label a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}

/* TESTIMONIOS */
.testimonios {
  padding: 100px 40px;
  background: #fafaf8;
  border-top: 1.5px solid var(--border);
}

.testimonios-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonios .section-title {
  margin-bottom: 48px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 28px 26px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
}

.tcard-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.tcard:nth-child(1) .tcard-accent { background: var(--blue); }
.tcard:nth-child(2) .tcard-accent { background: var(--pink); }
.tcard:nth-child(3) .tcard-accent { background: var(--yellow); }
.tcard:nth-child(4) .tcard-accent { background: var(--orange); }
.tcard:nth-child(5) .tcard-accent { background: var(--lime); }
.tcard:nth-child(6) .tcard-accent { background: var(--pink); }

.tcard-stars {
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.tcard-text {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}

.tcard-text::before {
  content: '\201C';
  font-family: 'Poppins', serif;
  font-size: 40px;
  color: var(--border);
  line-height: 0;
  vertical-align: -14px;
  margin-right: 4px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tcard:nth-child(1) .tcard-avatar { background: var(--blue); color: var(--ink); }
.tcard:nth-child(2) .tcard-avatar { background: var(--pink); }
.tcard:nth-child(3) .tcard-avatar { background: var(--yellow); color: var(--ink); }
.tcard:nth-child(4) .tcard-avatar { background: var(--orange); }
.tcard:nth-child(5) .tcard-avatar { background: var(--lime); color: var(--ink); }
.tcard:nth-child(6) .tcard-avatar { background: var(--pink); }

.tcard-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.tcard-role {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 300;
}

/* POR QUÉ POMICU */
.porque {
  padding: 100px 40px;
  background: #fff;
  border-top: 1.5px solid var(--border);
}

.porque-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.porque .section-title {
  margin-bottom: 48px;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pcard {
  border-radius: 24px;
  padding: 32px 28px;
  border: 2px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.pcard.pc1 { background: var(--blue); }
.pcard.pc2 { background: #fff; }
.pcard.pc3 { background: var(--yellow); }
.pcard.pc4 { background: #fff; }
.pcard.pc5 { background: var(--pink); }
.pcard.pc6 { background: var(--lime); }

.pcard-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.pcard-title {
  font-family: 'Poppins', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pcard-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
}

.pcard.pc1 .pcard-desc,
.pcard.pc3 .pcard-desc,
.pcard.pc5 .pcard-desc,
.pcard.pc6 .pcard-desc {
  color: rgba(0, 0, 0, .55);
}

/* PERSONAJES */
.personajes {
  padding: 90px 40px;
  background: #fff;
  border-top: 1.5px solid var(--border);
}

.personajes-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.personajes-title {
  font-family: 'FuenteSalon', serif;
  font-size: clamp(54px, 4.5vw, 72px);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 18px;
}

.personajes-desc {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.chars-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.chars-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #d7d7d7;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
}

.chars-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--pink);
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 48px 40px;
  text-align: center;
}

.footer-logo {
  font-family: 'Poppins', serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--pink);
}

.footer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  font-weight: 300;
}

@media (max-width: 768px) {
  .offer-top {
    font-size: 12px;
    line-height: 1.35;
  }

  nav {
    top: 42px;
    padding: 0 20px;
  }

  .hero {
    padding-top: 150px;
  }

  .offer-price-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing {
    padding: 60px 20px;
  }

  .pricing-grid,
  .testi-grid,
  .porque-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .steps-row {
    flex-direction: column;
    gap: 24px;
  }

  .steps-row::before {
    display: none;
  }

  .how,
  .form-section,
  .testimonios,
  .porque,
  .personajes {
    padding: 60px 20px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 110px 20px 50px;
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 70px);
    line-height: .9;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 26px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    max-width: 320px;
  }

  .fpanel {
    padding: 22px 18px 18px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .step-label {
    display: none;
  }

  .chars-row {
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px 10px;
    margin-inline: -8px;
  }

  .chars-row::-webkit-scrollbar {
    height: 6px;
  }

  .chars-row::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 999px;
  }

  .char-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    scroll-snap-align: start;
    padding: 0 12px;
  }

  .char-slot {
    width: 160px;
    height: 180px;
    margin: 0 auto;
  }

  .char-slot.c2 { height: 190px; }
  .char-slot.c3 { height: 185px; }
  .char-slot.c5 { height: 185px; }

  .char-placeholder img {
    max-width: 180px;
  }

  .char-name {
    margin-top: 16px;
    font-size: 16px;
  }

  .char-desc {
    font-size: 13px;
    max-width: 220px;
    margin-inline: auto;
  }

  .chars-dots {
    display: flex;
  }

  .personajes-title {
    font-size: 46px;
  }

  .personajes-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }
}

/* Selector de plan dentro del formulario */
.plan-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 18px auto 22px;
}

.plan-choice {
  appearance: none;
  border: 2px solid rgba(53, 78, 124, 0.16);
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 46, 75, 0.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  font-family: inherit;
  color: inherit;
}

.plan-choice:hover,
.plan-choice.active {
  transform: translateY(-2px);
  border-color: var(--blue, #4a7cf7);
  box-shadow: 0 16px 40px rgba(74, 124, 247, 0.16);
}

.plan-choice.active {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.plan-choice .choice-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(74, 124, 247, 0.1);
  color: var(--blue, #4a7cf7);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.plan-choice strong {
  display: block;
  font-size: 19px;
  margin-bottom: 6px;
}

.plan-choice span:not(.choice-kicker) {
  display: block;
  font-size: 14px;
  opacity: .82;
  line-height: 1.35;
}

.plan-choice em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 760px) {
  .plan-selector {
    grid-template-columns: 1fr;
  }
}
.phone-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: center;
}

.phone-row select {
  width: 100%;
  height: 44px;
  border: 2px solid #e5e5e5;
  border-radius: 14px;
  padding: 0 10px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

.phone-input-wrap input {
  width: 100%;
}

@media (max-width: 600px) {
  .phone-row {
    grid-template-columns: 1fr;
  }
}
