/* ====================================================================
   Daniela Cabrera Mkt — Landing
   Editorial layout on top of the DC design tokens (colors_and_type.css)
   ==================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); overflow-x: hidden; }

.app { position: relative; }

/* ====================================================================
   NAV — sticky, glassy on scroll
   ==================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  transition: background var(--dur-base) var(--ease-soft),
              border-color var(--dur-base) var(--ease-soft),
              padding var(--dur-base) var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(251, 247, 241, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--divider);
  padding: 12px 32px;
}
.nav--hero-light .nav__brand,
.nav--hero-light .nav__links a { color: rgba(255,255,255,.92); }
.nav--hero-light .nav__brand-mark { background: rgba(255,255,255,.16); color: #fff; }
.nav--hero-light.nav--scrolled .nav__brand,
.nav--hero-light.nav--scrolled .nav__links a { color: var(--ink-700); }
.nav--hero-light.nav--scrolled .nav__brand { color: var(--lav-700); }
.nav--hero-light.nav--scrolled .nav__brand-mark { background: var(--lav-100); color: var(--lav-700); }

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}
.nav__brand-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-soft);
}
.nav__brand-wordmark em {
  font-style: italic;
  color: var(--honey);
  margin-left: 4px;
  transition: color var(--dur-base) var(--ease-soft);
}
.nav__brand-sub {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 2px;
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-soft);
}
.nav--scrolled .nav__brand-wordmark { color: var(--ink-900); font-size: 24px; }
.nav--scrolled .nav__brand-wordmark em { color: var(--lav-600); }
.nav--scrolled .nav__brand-sub { color: var(--ink-500); }

@media (max-width: 900px) {
  .nav__brand-wordmark { font-size: 22px; }
  .nav__brand-sub { font-size: 8.5px; letter-spacing: .26em; }
  .nav--scrolled .nav__brand-wordmark { font-size: 20px; }
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-soft);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-soft);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  margin-left: 8px;
}

.nav__menu-btn {
  display: none;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav--scrolled { padding: 10px 20px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__menu-btn { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--lav-800);
  z-index: 200;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.drawer.open { transform: translateY(0); }
.drawer a {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--lav-100);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.drawer__close {
  position: absolute; top: 22px; right: 20px;
  background: transparent; border: none; color: var(--lav-100); cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

/* ====================================================================
   BUTTONS
   ==================================================================== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-soft);
  line-height: 1;
}
.btn--primary {
  background: var(--ink-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--ink-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn--primary:active { transform: scale(0.98); }
.btn--lav {
  background: var(--lav-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--lav:hover {
  background: var(--lav-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 4px;
}
.btn--ghost:hover { color: var(--lav-700); }
.btn--ghost--light { color: var(--white); }
.btn--ghost--light:hover { color: var(--lav-100); }
.btn--white {
  background: var(--white);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background: var(--lav-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--ink-900);
}
.btn--sm { padding: 10px 18px; font-size: 11px; }
.btn--lg { padding: 18px 32px; font-size: 14px; }
.btn--icon-only { padding: 0; width: 52px; height: 52px; }

.btn-bubble {
  /* round green-yellow CTA from the reference */
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--ink-900);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-soft);
  box-shadow: var(--shadow-sm);
}
.btn-bubble:hover { transform: translateY(-2px) rotate(8deg); box-shadow: var(--shadow-md); }

/* ====================================================================
   HERO v3 — full-bleed lavender
   ==================================================================== */
.hero {
  padding: 0;
  background: var(--cream);
}
.hero__card {
  position: relative;
  background: linear-gradient(140deg, var(--lav-500) 0%, var(--lav-600) 60%, var(--lav-700) 100%);
  border-radius: 0;
  padding: 116px 56px 56px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero__card::before {
  /* soft circular wash bottom-left */
  content: '';
  position: absolute;
  width: 90%; height: 80%;
  bottom: -30%; left: -25%;
  background: radial-gradient(ellipse at center, var(--lav-300) 0%, transparent 65%);
  opacity: .42;
  pointer-events: none;
}
.hero__card::after {
  /* highlight upper-right */
  content: '';
  position: absolute;
  width: 70%; height: 70%;
  top: -30%; right: -20%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.20) 0%, transparent 60%);
  pointer-events: none;
}

.hero__topbar-rule {
  position: absolute;
  top: 78px; left: 56px; right: 56px;
  height: 1px;
  background: rgba(255,255,255,.18);
  z-index: 2;
}

.hero__dot-cluster {
  position: absolute;
  top: 38%;
  right: 4%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  z-index: 1;
  opacity: .35;
  pointer-events: none;
}
.hero__dot-cluster span {
  width: 6px; height: 6px;
  background: var(--lav-200);
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--honey);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
  flex: 1;
}

/* ---------- LEFT column ---------- */
.hero__col-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  min-width: 0;
}

.hero__headline {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.hero__headline em {
  font-style: italic;
  color: var(--lav-100);
}
.hero__headline-tag {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill);
  padding: 8px 14px 9px;
  margin: 0 0 0 12px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: clamp(12px, 1vw, 16px);
  letter-spacing: .18em;
  color: var(--white);
  position: relative;
  top: -0.32em;
  text-transform: uppercase;
  line-height: 1;
}
.hero__headline-dot {
  color: var(--honey);
  font-style: italic;
  margin-left: 0.02em;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  max-width: 46ch;
  text-wrap: pretty;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--honey);
  color: var(--ink-900);
  padding: 13px 22px 13px 16px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(34, 26, 56, 0.10);
  transition: all var(--dur-base) var(--ease-soft);
  border: 1px solid rgba(34, 26, 56, 0.06);
}
.hero__wa-btn:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--honey) 88%, var(--ink-900) 12%);
  box-shadow: 0 10px 22px rgba(34, 26, 56, 0.16);
  color: var(--ink-900);
}
.hero__wa-btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-900);
}

.hero__id-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__id-avatar--solo {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__id-avatar--solo img { width: 100%; height: 100%; object-fit: cover; }
.hero__id-text {
  display: flex; flex-direction: column; gap: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}
.hero__id-text strong { font-weight: 600; }
.hero__id-text span { color: rgba(255,255,255,.7); font-size: 13px; }

/* ---------- RIGHT column — clean photo card ---------- */
.hero__col-right {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero__photo-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--lav-100);
  box-shadow:
    0 24px 60px rgba(34, 26, 56, 0.22),
    0 4px 12px rgba(34, 26, 56, 0.08);
  aspect-ratio: 4 / 5;
  width: 100%;
  height: 100%;
  min-height: 540px;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: contrast(1.02) saturate(1.04);
}

/* Floating logo mark — top-right overlay */
.hero__photo-mark {
  position: absolute;
  top: 22px; right: 22px;
  width: 84px; height: 84px;
  background: var(--ink-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(34, 26, 56, 0.22);
  animation: hero-card-in 700ms var(--ease-out) 300ms backwards;
}
.hero__photo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
}
@keyframes hero-card-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* Bottom caption pill — overlay */
.hero__photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34, 26, 56, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  z-index: 3;
  animation: hero-card-in 700ms var(--ease-out) 450ms backwards;
}
.hero__photo-caption strong { color: var(--lav-200); font-weight: 600; }
.hero__photo-caption-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lav-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 1080px) {
  .hero__card { padding: 110px 36px 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__topbar-rule { left: 36px; right: 36px; }
  .hero__photo-card { min-height: 480px; aspect-ratio: 4/4; }
}
@media (max-width: 720px) {
  .hero { padding: 0; }
  .hero__card { padding: 96px 22px 32px; border-radius: 0; min-height: 0; }
  .hero__topbar-rule { display: none; }
  .hero__dot-cluster { display: none; }
  .hero__eyebrow { margin-bottom: 24px; font-size: 10px; }
  .hero__grid { gap: 32px; }
  .hero__headline-tag { padding: 7px 12px; margin: 0 4px; }
  .hero__id-row { gap: 14px; padding-top: 18px; }
  .hero__id-avatar--solo { width: 44px; height: 44px; }
  .hero__photo-card { min-height: 440px; }
  .hero__photo-mark { top: 14px; right: 14px; width: 64px; height: 64px; padding: 10px; }
  .hero__photo-caption { left: 14px; right: 14px; bottom: 14px; padding: 12px 14px; font-size: 12.5px; }
}

/* ====================================================================
   MARQUEE (clients band)
   ==================================================================== */
.band {
  background: var(--ink-900);
  color: var(--lav-200);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--ink-700);
  border-bottom: 1px solid var(--ink-700);
}
.band__track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.band__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lav-200);
}
.band__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lav-400); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================================================================
   GENERIC SECTION
   ==================================================================== */
.section {
  padding: 120px 32px;
  background: var(--cream);
  position: relative;
}
.section--paper { background: var(--paper); }
.section--ink {
  background: var(--ink-900);
  color: var(--white);
}
.section--ink .section__eyebrow { color: var(--lav-300); }
.section--ink .section__title { color: var(--white); }
.section--ink .section__lead { color: var(--lav-200); }
.section--lav { background: var(--lav-50); }

.section__inner { max-width: 1280px; margin: 0 auto; }

.section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 72px;
}
.section__head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section__eyebrow {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--lav-700);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section__eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--lav-400);
  display: inline-block;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
  max-width: 14ch;
}
.section__title em {
  font-style: italic;
  color: var(--lav-600);
}
.section__title--wide { max-width: none; }
.section__lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 420px;
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .section { padding: 80px 20px; }
  .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ====================================================================
   PROCESO
   ==================================================================== */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-100);
}
.proceso-step {
  position: relative;
  padding: 56px 40px 56px 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--ink-100);
  cursor: default;
  transition: background var(--dur-base) var(--ease-soft);
}
.proceso-step:nth-child(odd) { padding-right: 60px; border-right: 1px solid var(--ink-100); }
.proceso-step:nth-child(even) { padding-left: 60px; }
.proceso-step:nth-last-child(-n+2) { border-bottom: none; }
.proceso-step:hover { background: rgba(176, 155, 210, 0.05); }
.proceso-step:hover .proceso-step__num {
  color: var(--lav-600);
  transform: translateY(-2px);
}
.proceso-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 88px;
  line-height: 0.85;
  color: var(--lav-300);
  letter-spacing: -.04em;
  transition: color var(--dur-base) var(--ease-soft), transform var(--dur-base) var(--ease-soft);
}
.proceso-step__body { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; }
.proceso-step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink-900);
  margin: 0;
}
.proceso-step__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
  max-width: 44ch;
}
.proceso-step__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.proceso-step__tag {
  background: var(--lav-100);
  color: var(--lav-700);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}

@media (max-width: 900px) {
  .proceso-grid { grid-template-columns: 1fr; }
  .proceso-step { grid-template-columns: 72px 1fr; padding: 36px 0 !important; border-right: none !important; }
  .proceso-step:last-child { border-bottom: none; }
  .proceso-step__num { font-size: 64px; }
}

/* ====================================================================
   PAQUETES
   ==================================================================== */
.planes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--dur-base) var(--ease-soft),
              box-shadow var(--dur-base) var(--ease-soft);
  overflow: hidden;
}
.plan::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  top: -180px; right: -180px;
  background: var(--lav-100);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-soft);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan:hover::before { opacity: .6; }
.plan > * { position: relative; z-index: 1; }

.plan--featured {
  background: linear-gradient(180deg, var(--ink-900) 0%, var(--lav-900) 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.plan--featured .plan__name { color: var(--white); }
.plan--featured .plan__qty { color: var(--lav-300); }
.plan--featured .plan__qty-cap { color: var(--lav-200); }
.plan--featured .plan__features li { color: var(--lav-100); }
.plan--featured .plan__features li svg { color: var(--honey); }
.plan--featured::before { background: rgba(176, 155, 210, 0.18); opacity: 1; }
.plan--featured .plan__badge {
  background: var(--honey);
  color: var(--ink-900);
}
.plan--featured:hover { transform: translateY(-6px); }

.plan__badge {
  align-self: flex-start;
  background: var(--lav-100);
  color: var(--lav-700);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .22em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
}
.plan__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink-900);
}
.plan__qty-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: -6px;
}
.plan__qty {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.9;
  color: var(--lav-600);
  letter-spacing: -.04em;
}
.plan__qty-cap {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.3;
  letter-spacing: .02em;
}
.plan__divider {
  height: 1px;
  background: var(--ink-100);
  margin: 4px 0;
}
.plan--featured .plan__divider { background: rgba(255,255,255,.12); }

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 11px;
  flex: 1;
}
.plan__features li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.45;
  color: var(--ink-700);
}
.plan__features li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--lav-600);
}
.plan__features li.is-new { font-weight: 500; }
.plan__features li.is-new::after {
  content: 'nuevo';
  margin-left: auto;
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: .22em;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--blush);
  color: var(--ink-900);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  align-self: center;
}
.plan--featured .plan__features li.is-new::after {
  background: var(--honey);
  color: var(--ink-900);
}

.plan__cta {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .planes { grid-template-columns: 1fr; }
}

/* ====================================================================
   TESTIMONIOS
   ==================================================================== */
.testimonios {
  position: relative;
}
.testimonios__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 0 0 40px;
  text-wrap: balance;
  max-width: 22ch;
  min-height: 4em;
  transition: opacity var(--dur-slow) var(--ease-soft);
}
.testimonios__quote em {
  font-style: italic;
  color: var(--lav-200);
}
.testimonios__row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonios__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--lav-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--ink-900);
  border: 2px solid rgba(255,255,255,.15);
}
.testimonios__author {
  display: flex; flex-direction: column; gap: 2px;
  color: var(--white);
}
.testimonios__author strong { font-weight: 600; font-size: 16px; }
.testimonios__author span { font-size: 13px; color: var(--lav-200); }
.testimonios__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonios__nav-dots {
  display: flex;
  gap: 8px;
  margin-right: 8px;
}
.testimonios__nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none; padding: 0; cursor: pointer;
  transition: all var(--dur-base) var(--ease-soft);
}
.testimonios__nav-dot.is-active { background: var(--honey); width: 24px; border-radius: var(--r-pill); }
.testimonios__nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-soft);
}
.testimonios__nav-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.4);
}

/* big quote mark */
.testimonios__mark {
  position: absolute;
  top: -30px; left: -10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 240px;
  line-height: 1;
  color: rgba(176, 155, 210, 0.18);
  pointer-events: none;
  user-select: none;
}

/* ====================================================================
   FAQ
   ==================================================================== */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq__intro { position: sticky; top: 120px; }
.faq__intro .section__title { font-size: clamp(36px, 4.4vw, 64px); max-width: 12ch; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink-100);
}
.faq__item {
  border-bottom: 1px solid var(--ink-100);
  padding: 24px 0;
}
.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink-900);
  transition: color var(--dur-fast) var(--ease-soft);
}
.faq__q:hover { color: var(--lav-700); }
.faq__plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lav-100);
  color: var(--lav-700);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-soft);
  font-size: 18px;
  font-weight: 300;
}
.faq__item.is-open .faq__plus {
  background: var(--ink-900);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-soft);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div {
  overflow: hidden;
}
.faq__a p {
  padding-top: 16px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-500);
  max-width: 58ch;
}

@media (max-width: 900px) {
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .faq__intro { position: static; }
}

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.contact__copy { display: flex; flex-direction: column; gap: 24px; }
.contact__copy .section__title { font-size: clamp(40px, 5vw, 72px); max-width: 12ch; }
.contact__lines { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact__lines li { display: flex; align-items: center; gap: 16px; }
.contact__lines a {
  color: var(--ink-900);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-soft);
}
.contact__lines a:hover { color: var(--lav-700); }
.contact__line-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--ink-100);
  color: var(--lav-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__line-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}
.contact__line-text { display: flex; flex-direction: column; }

.contact__form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-700);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-900);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  padding: 14px 16px;
  width: 100%;
  transition: all var(--dur-base) var(--ease-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--lav-400);
  background: var(--white);
  box-shadow: var(--ring-primary);
}
.field--error input,
.field--error textarea,
.field--error select {
  border-color: var(--danger);
  background: var(--danger-bg);
}
.field__error {
  font-size: 12px;
  color: var(--danger);
  display: flex; align-items: center; gap: 6px;
}
.field__hint {
  font-size: 12px;
  color: var(--fg-muted);
}
select.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23634F94' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

.contact__submit {
  margin-top: 8px;
  align-self: flex-start;
}
.contact__success {
  margin-top: 4px;
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--success-bg);
  border: 1px solid color-mix(in srgb, var(--success), transparent 65%);
  border-radius: var(--r-md);
  padding: 16px 18px;
  animation: slide-up .5s var(--ease-out);
}
.contact__success-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact__success-text strong { display: block; color: var(--success); font-weight: 600; margin-bottom: 2px; }
.contact__success-text span { color: var(--ink-700); font-size: 14px; line-height: 1.45; }
@keyframes slide-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-card { padding: 28px; }
}
@media (max-width: 560px) {
  .contact__form-row { grid-template-columns: 1fr; }
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--ink-900);
  padding: 96px 32px 48px;
  color: var(--lav-200);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  bottom: -400px; left: -150px;
  background: radial-gradient(circle, rgba(176, 155, 210, 0.18), transparent 65%);
  pointer-events: none;
}
.footer__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.footer__cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 56px;
}
.footer__cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 0;
  max-width: 14ch;
}
.footer__cta-title em { font-style: italic; color: var(--lav-300); }

.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lav-300);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: var(--lav-100);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--dur-fast) var(--ease-soft);
}
.footer__col a:hover { color: var(--white); }
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer__brand-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--white);
}
.footer__brand-wordmark em {
  font-style: italic;
  color: var(--honey);
  margin-left: 4px;
}
.footer__brand-sub {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--lav-300);
  padding-left: 2px;
}
.footer__brand-desc { font-size: 14px; line-height: 1.6; color: var(--lav-100); max-width: 32ch; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: var(--ink-300); letter-spacing: .04em; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(176, 155, 210, 0.12);
  color: var(--lav-100);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-soft);
}
.footer__social a:hover { background: var(--lav-600); color: var(--white); }

@media (max-width: 900px) {
  .footer { padding: 64px 20px 32px; }
  .footer__cta-row { grid-template-columns: 1fr; gap: 24px; align-items: start; padding-bottom: 48px; margin-bottom: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ====================================================================
   FLOATING WHATSAPP
   ==================================================================== */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--ink-900);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 0;
  height: 56px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(34, 26, 56, 0.28), 0 2px 8px rgba(0,0,0,.08);
  transition: all var(--dur-base) var(--ease-soft);
  overflow: hidden;
}
.wa-fab__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--honey);
}
.wa-fab__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding-right: 22px;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  color: var(--white);
  transition: all var(--dur-slow) var(--ease-soft);
}
.wa-fab:hover,
.wa-fab:focus-visible {
  transform: translateY(-2px);
  background: var(--lav-700);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(99, 79, 148, 0.42), 0 2px 8px rgba(0,0,0,.12);
}
.wa-fab:hover .wa-fab__label,
.wa-fab:focus-visible .wa-fab__label {
  max-width: 280px;
  opacity: 1;
  padding-right: 22px;
  color: var(--white);
}
.wa-fab:hover .wa-fab__icon,
.wa-fab:focus-visible .wa-fab__icon { color: var(--honey); }

.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: var(--r-pill);
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(232, 215, 168, 0.55);
  animation: wa-pulse 2.6s var(--ease-out) infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 215, 168, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(232, 215, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 215, 168, 0); }
}

.wa-fab--hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
}
.wa-fab--hidden .wa-fab__pulse { animation: none; box-shadow: none; }

@media (max-width: 560px) {
  .wa-fab { bottom: 16px; right: 16px; }
}

/* ====================================================================
   SCROLL REVEAL helper
   ==================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
