:root {
  --rose: #D4907E;
  --rose-light: #F0C4B8;
  --rose-pale: #FDF5F2;
  --rose-deep: #B8705E;
  --brown: #4A3228;
  --brown-light: #6B4D3E;
  --brown-warm: #8B6954;
  --cream: #FBF7F4;
  --cream-dark: #F3EDE8;
  --olive: #7A8B6F;
  --olive-light: #E8EDE4;
  --white: #FFFFFF;
  --text: #3A2E28;
  --text-light: #7A6B62;
  --gold: #C4A265;
  --gold-light: #F5EDD8;
  --accent: var(--rose);
  --accent-deep: var(--rose-deep);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════ UTILITIES ═══════════ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 20px;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 640px;
  font-weight: 300;
  text-wrap: pretty;
}

/* ═══════════ IMAGE PLACEHOLDERS ═══════════ */
.img-ph {
  position: relative;
  background-color: var(--cream-dark);
  background-image:
    repeating-linear-gradient(135deg, rgba(180,112,94,0.08) 0 2px, transparent 2px 11px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-ph::after {
  content: attr(data-label);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown-warm);
  opacity: 0.55;
  padding: 8px 14px;
  border: 1px dashed rgba(139,105,84,0.4);
  border-radius: 6px;
  background: rgba(251,247,244,0.6);
  text-align: center;
  max-width: 80%;
}
.img-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════ TOP CALLOUT ═══════════ */
.top-callout {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: 40px;
  background: var(--brown);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.86rem; letter-spacing: 0.2px;
  text-decoration: none;
  padding: 0 16px;
  transition: background 0.3s ease;
}
.top-callout:hover { background: var(--accent-deep); color: var(--cream); }
.top-callout-spark { font-size: 1rem; line-height: 1; }
.top-callout-text { display: inline-flex; align-items: center; gap: 4px; }
.top-callout-text strong { font-weight: 600; color: var(--cream); }
.top-callout-sep { color: rgba(255,255,255,0.4); }
.top-callout-sub { color: rgba(255,255,255,0.82); font-weight: 300; }
.top-callout-arrow {
  font-weight: 600; display: inline-block; transition: transform 0.3s ease;
}
.top-callout:hover .top-callout-arrow { transform: translateX(4px); }

/* anclá el scroll un poco más abajo del nav + callout */
#hacer-test { scroll-margin-top: 110px; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.4s ease; background: transparent;
}
.nav.scrolled {
  background: rgba(251,247,244,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,144,126,0.15); padding: 10px 0;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.nav-logo-img { height: 26px; width: auto; display: block; transition: height 0.4s ease; }
.nav.scrolled .nav-logo-img { height: 23px; }
.footer-logo-img { height: 30px; width: auto; display: block; margin: 0 auto 14px; opacity: 0.92; }
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
}
.nav-logo-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--brown); }
.nav-logo-name small { display:block; font-family: var(--font-body); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); font-weight: 500; margin-top: -2px; }
.nav-cta {
  background: var(--accent); color: white; padding: 10px 28px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-login { display: inline-flex; align-items: center; gap: 8px; color: var(--brown); font-size: 0.82rem; font-weight: 500; text-decoration: none; letter-spacing: 0.2px; padding: 9px 18px; border-radius: 100px; border: 1px solid var(--rose-light); transition: all 0.3s ease; }
.nav-login:hover { border-color: var(--accent); color: var(--accent-deep); background: rgba(212,144,126,0.07); transform: translateY(-1px); }
.nav-login-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 3px rgba(122,139,111,0.18); flex-shrink: 0; }

/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: white;
  padding: 16px 36px; border-radius: 100px; font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.35s ease; letter-spacing: 0.3px; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--accent-deep); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,144,126,0.3); letter-spacing: 0.6px;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px; color: var(--brown-warm);
  font-size: 0.9rem; font-weight: 500; text-decoration: none; padding: 16px 8px; transition: color 0.3s;
}
.btn-secondary:hover { color: var(--accent-deep); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--cream) 0%, var(--rose-pale) 50%, var(--cream-dark) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -20%; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,144,126,0.12) 0%, transparent 70%); pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 120px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--accent-deep);
  margin-bottom: 24px; display: inline-flex; align-items: center; gap: 10px;
}
.hero-tag::before { content:''; width: 28px; height: 1px; background: var(--accent); display: inline-block; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 3.8rem); font-weight: 500; line-height: 1.1;
  color: var(--brown); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--accent-deep); }
.hero-desc {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; max-width: 480px;
  font-weight: 300;
}
.hero-cta-group {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.hero-trust {
  display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-light); font-weight: 400; }
.hero-trust-item span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); }
.hero-image-wrap { position: relative; width: 100%; max-width: 440px; aspect-ratio: 4/5; margin: 0 auto; }
.hero-image-wrap image-slot { border-radius: 24px; box-shadow: 0 24px 48px rgba(74,50,40,0.12); overflow: hidden; }
.hero-badge {
  position: absolute; bottom: -16px; left: -16px; background: white; border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 12px; z-index: 3;
}
.hero-badge-icon {
  width: 40px; height: 40px; background: var(--olive-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.hero-badge-text span { display: block; font-size: 0.75rem; color: var(--text-light); font-weight: 400; }
.hero-badge-text strong { font-size: 0.82rem; font-weight: 600; color: var(--brown); white-space: nowrap; }

.section-wave { display: block; width: 100%; height: 60px; margin-top: -1px; }

/* ═══════════ PAIN ═══════════ */
.pain { padding: 100px 0; background: var(--white); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.pain-items { display: flex; flex-direction: column; gap: 16px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; border-radius: 16px;
  transition: all 0.3s ease; cursor: default;
}
.pain-item:hover { background: var(--rose-pale); }
.pain-check {
  flex-shrink: 0; width: 24px; height: 24px; border: 2px solid var(--rose-light); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px; transition: all 0.3s;
}
.pain-item:hover .pain-check { border-color: var(--accent); background: var(--accent); }
.pain-item:hover .pain-check::after { content: '✓'; color: white; font-size: 13px; font-weight: 700; }
.pain-item p { font-size: 1rem; line-height: 1.6; color: var(--text); font-weight: 400; }
.pain-quote { background: var(--rose-pale); border-radius: 24px; padding: 48px 40px; position: relative; }
.pain-quote::before {
  content: '"'; font-family: var(--font-display); font-size: 6rem; color: var(--rose-light);
  position: absolute; top: 10px; left: 28px; line-height: 1;
}
.pain-quote blockquote {
  font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--brown);
  line-height: 1.5; position: relative; z-index: 2;
}
.pain-quote cite { display: block; margin-top: 20px; font-style: normal; font-family: var(--font-body); font-size: 0.85rem; color: var(--text-light); }
.pain-shift { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(212,144,126,0.2); }
.pain-shift-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--olive); margin-bottom: 8px; }
.pain-shift p { font-size: 0.92rem; color: var(--text); line-height: 1.7; font-weight: 300; }

/* ═══════════ AMIRA ═══════════ */
.amira { padding: 100px 0; background: var(--cream); }
.amira-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.amira-photo { aspect-ratio: 3/4; }
.amira-photo image-slot { border-radius: 20px; overflow: hidden; }
.amira-content h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500;
  color: var(--brown); line-height: 1.2; margin-bottom: 24px;
}
.amira-content h2 em { color: var(--accent-deep); font-style: italic; }
em.subtle { font-style: normal; color: var(--brown); font-weight: 400; }
.amira-content p { font-size: 1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; font-weight: 300; }
.amira-credentials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.credential {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white);
  padding: 10px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 500; color: var(--brown-warm);
  border: 1px solid rgba(0,0,0,0.04);
}

/* ═══════════ INCLUDES ═══════════ */
/* ── Sección "la evolución" (método + herramienta + acompañamiento) ── */
.shift { padding: 92px 0; background: var(--cream); position: relative; }
.shift-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.shift-card {
  background: #fff; border: 1px solid var(--cream-dark); border-radius: 20px;
  padding: 28px 24px; text-align: left; box-shadow: 0 14px 34px rgba(74,50,40,0.05);
}
.shift-card-ico {
  width: 50px; height: 50px; border-radius: 14px; background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 16px;
}
.shift-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 8px;
}
.shift-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--brown); margin-bottom: 10px; line-height: 1.25; }
.shift-card p { font-size: 0.9rem; line-height: 1.65; color: var(--text-light); font-weight: 300; }

.includes { padding: 100px 0; background: var(--brown); color: white; }
.includes .section-tag { color: var(--rose-light); }
.includes .section-title { color: white; }
.includes .section-subtitle { color: rgba(255,255,255,0.6); }
.includes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.include-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
  padding: 32px 24px; transition: all 0.35s ease;
}
.include-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.include-icon {
  width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; background: rgba(212,144,126,0.2);
}
.include-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; color: white; }
.include-card p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.55); font-weight: 300; }

/* ═══════════ MÓDULOS / PROGRAMA ═══════════ */
.modules { padding: 100px 0; background: var(--cream); }
.modules-timeline { margin-top: 56px; display: flex; flex-direction: column; gap: 0; position: relative; }
.modules-timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--rose-light), var(--olive-light));
}
.module-item { display: grid; grid-template-columns: 58px 1fr; gap: 28px; padding: 16px 0; position: relative; }
.module-dot { width: 58px; display: flex; justify-content: center; padding-top: 4px; }
.module-dot span {
  width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--rose-light); position: relative; z-index: 2;
}
.module-content { background: var(--white); border-radius: 16px; padding: 24px 28px; border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; }
.module-content:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.module-week { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.module-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--brown); margin-bottom: 8px; }
.module-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }
.module-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.module-topics span { background: var(--cream); padding: 5px 12px; border-radius: 100px; font-size: 0.75rem; color: var(--brown-warm); font-weight: 500; }

/* ═══════════ TESTIMONIOS ═══════════ */
.testimonials { padding: 100px 0; background: var(--rose-pale); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: start; }
.testimonial-card { background: white; border-radius: 20px; padding: 32px 28px; position: relative; }
.testimonial-card::before {
  content: '"'; font-family: var(--font-display); font-size: 4rem; color: var(--rose-light);
  position: absolute; top: 48px; left: 22px; line-height: 1; z-index: 0; pointer-events: none;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; position: relative; z-index: 2; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 20px; position: relative; z-index: 2; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--rose-light); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--accent-deep);
  overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar .img-ph { width: 100%; height: 100%; }
.testimonial-author-info span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--brown); }
.testimonial-author-info small { font-size: 0.78rem; color: var(--text-light); }
.testimonial-note { text-align:center; margin-top: 28px; font-size: 0.8rem; color: var(--text-light); font-style: italic; }

/* ═══════════ FOR WHO ═══════════ */
.for-who-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.fwc-yes, .fwc-no { padding: 24px 28px; border-radius: 14px; font-size: 0.95rem; line-height: 1.6; color: var(--text); font-weight: 300; }
.fwc-yes { background: var(--olive-light); border-left: 3px solid var(--olive); }
.fwc-yes strong { color: var(--olive); font-weight: 600; display:block; margin-bottom: 6px; }
.fwc-no { background: var(--cream-dark); border-left: 3px solid var(--text-light); }
.fwc-no strong { color: var(--text-light); font-weight: 600; display:block; margin-bottom: 6px; }

/* ═══════════ LEAD MAGNET ═══════════ */
.lead { padding: 90px 0; background: var(--white); }
.lead-card {
  max-width: 920px; margin: 0 auto; background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  border-radius: 28px; padding: 56px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  border: 1px solid rgba(196,162,101,0.18);
}
.lead-card h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 500; color: var(--brown); line-height: 1.2; margin-bottom: 14px; }
.lead-card h2 em { font-style: italic; color: var(--accent-deep); }
.lead-card p { font-size: 0.98rem; color: var(--text-light); line-height: 1.7; font-weight: 300; }
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-form label { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--brown-warm); }
.lead-input {
  width: 100%; padding: 15px 18px; border-radius: 12px; border: 1px solid rgba(74,50,40,0.15);
  background: rgba(255,255,255,0.8); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); transition: all 0.25s;
}
.lead-input:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(212,144,126,0.15); }
.lead-form .btn-primary { justify-content: center; width: 100%; margin-top: 4px; }
.lead-success { background: rgba(122,139,111,0.12); border-radius: 12px; padding: 20px; color: var(--olive); font-weight: 500; font-size: 0.95rem; text-align: center; }
.lead-error { background: rgba(212,144,126,0.15); border-radius: 10px; padding: 12px 14px; color: var(--accent-deep); font-size: 0.85rem; text-align: center; font-weight: 500; }
.lead-form .btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }
.lead-input:disabled { opacity: 0.6; cursor: not-allowed; }
.lead-fineprint { font-size: 0.74rem; color: var(--text-light); text-align: center; }

/* ═══════════ OFFER / PRICING ═══════════ */
.pricing { padding: 100px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--rose-pale) 100%); }
.offer-wrap { max-width: 920px; margin: 48px auto 0; }

/* Variant A - single hero offer */
.offer-a { background: var(--white); border-radius: 28px; padding: 0; overflow: hidden; box-shadow: 0 24px 60px rgba(74,50,40,0.1); border: 1px solid rgba(0,0,0,0.04); display: grid; grid-template-columns: 1.1fr 1fr; }
.offer-a-left { padding: 48px 44px; }
.offer-a-left h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--brown); margin-bottom: 6px; }
.offer-a-left .offer-sub { font-size: 0.92rem; color: var(--text-light); margin-bottom: 26px; font-weight: 300; line-height: 1.5; }
.offer-features { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.offer-features li { font-size: 0.9rem; padding-left: 28px; position: relative; line-height: 1.45; color: var(--text); }
.offer-features li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: #fff; background: var(--olive); width: 18px; height: 18px;
  border-radius: 50%; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.offer-a-right { background: var(--brown); color: #fff; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.offer-anchor { font-size: 0.95rem; color: rgba(255,255,255,0.5); text-decoration: line-through; margin-bottom: 4px; }
.offer-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.offer-curr { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.offer-price { font-family: var(--font-display); font-size: 4rem; font-weight: 600; line-height: 1; color: #fff; }
.offer-installments { font-size: 0.9rem; color: var(--rose-light); margin-bottom: 4px; font-weight: 500; }
.offer-ars { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.offer-a-right .btn-primary { justify-content: center; width: 100%; }
.offer-save-pill { display: inline-block; align-self: flex-start; background: var(--olive); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }
.offer-guarantee-line { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* Variant B - value stack */
.offer-b { background: var(--white); border-radius: 28px; padding: 48px 44px; box-shadow: 0 24px 60px rgba(74,50,40,0.1); border: 1px solid rgba(0,0,0,0.04); }
.offer-b h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--brown); text-align: center; margin-bottom: 4px; }
.offer-b > .offer-sub { text-align: center; color: var(--text-light); font-size: 0.92rem; margin-bottom: 30px; font-weight: 300; }
.stack-list { list-style: none; display: flex; flex-direction: column; }
.stack-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px dashed rgba(74,50,40,0.12); }
.stack-row-main { display: flex; align-items: flex-start; gap: 14px; }
.stack-ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: var(--rose-pale); display:flex; align-items:center; justify-content:center; font-size: 18px; }
.stack-row-main strong { display: block; font-size: 0.95rem; color: var(--brown); font-weight: 600; }
.stack-row-main span { font-size: 0.82rem; color: var(--text-light); font-weight: 300; }
.stack-val { font-family: var(--font-display); font-size: 1.1rem; color: var(--brown-warm); white-space: nowrap; font-weight: 500; }
.stack-total { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 6px; margin-top: 6px; }
.stack-total span { font-size: 0.95rem; color: var(--text-light); }
.stack-total .stack-total-val { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-light); text-decoration: line-through; }
.stack-today {
  background: var(--brown); border-radius: 18px; padding: 28px 32px; margin-top: 22px; text-align: center; color: #fff;
}
.stack-today .stack-today-label { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rose-light); margin-bottom: 8px; }
.stack-today .offer-price-row { justify-content: center; }
.stack-today .offer-installments { color: var(--rose-light); }
.stack-today .btn-primary { justify-content: center; margin-top: 18px; padding-left: 48px; padding-right: 48px; }

/* Variant C - two plan comparison */
.offer-c { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.plan-card { background: white; border-radius: 24px; padding: 40px 34px; position: relative; border: 1px solid rgba(0,0,0,0.05); transition: all 0.35s; }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.plan-card.featured { background: var(--brown); color: white; border: none; }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white;
  padding: 6px 20px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}
.plan-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.plan-card.featured h3 { color: white; }
.plan-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; font-weight: 300; line-height: 1.5; min-height: 60px; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.55); }
.plan-anchor { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.plan-card.featured .plan-anchor { color: rgba(255,255,255,0.4); }
.plan-price-row { display:flex; align-items: baseline; gap: 4px; margin-bottom: 2px; }
.plan-curr { font-family: var(--font-display); font-size: 1.1rem; }
.plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; }
.plan-installments { font-size: 0.82rem; color: var(--text-light); margin-bottom: 22px; }
.plan-spacer { height: 18px; }
.plan-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; }
.plan-card.featured .plan-eyebrow { color: var(--rose-light); }
.plan-vip-note { margin-bottom: 22px; padding-bottom: 2px; }
.plan-vip-tag { display: inline-block; background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 14px; }
.plan-vip-note p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.55; font-weight: 300; }
.plan-card.featured .plan-badge { white-space: normal; max-width: 84%; text-align: center; line-height: 1.3; padding: 7px 18px; }

/* Escasez honesta (cupos por cohorte) + descuento alumni en el plan +Energía */
.plan-scarcity { margin-top: 16px; font-size: 0.82rem; line-height: 1.5; color: var(--brown-warm); font-weight: 500; text-align: center; }
.plan-alumni {
  margin-top: 14px; padding: 12px 16px; border-radius: 12px;
  background: var(--rose-pale); border: 1px solid var(--rose-light);
  font-size: 0.82rem; line-height: 1.5; color: var(--brown); text-align: center; font-weight: 300;
}
.plan-alumni strong { font-weight: 600; color: var(--accent-deep); }

/* Tira de equipo */
.team-strip { max-width: 880px; margin: 40px auto 0; text-align: center; }
.team-strip-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--brown-warm); margin-bottom: 20px; }
.team-strip-items { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.team-member { display: flex; align-items: center; gap: 12px; }
.team-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--rose-light); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; flex-shrink: 0; }
.team-member-text { text-align: left; }
.team-member-text strong { display: block; font-size: 0.85rem; color: var(--brown); font-weight: 600; }
.team-member-text span { font-size: 0.78rem; color: var(--text-light); }

/* CTA del test */
.test-cta { max-width: 880px; margin: 40px auto 0; background: var(--brown); color: #fff; border-radius: 20px; padding: 28px 32px; display: flex; align-items: center; gap: 24px; }
.test-cta-icon { font-size: 30px; flex-shrink: 0; width: 60px; height: 60px; border-radius: 14px; background: rgba(212,144,126,0.22); display: flex; align-items: center; justify-content: center; }
.test-cta-text { flex: 1; }
.test-cta-text h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.test-cta-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; }
.test-cta-btn { background: var(--accent); color: #fff !important; padding: 13px 26px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; font-weight: 500; }
.test-cta-btn:hover { background: var(--rose-light); color: var(--brown) !important; transform: translateY(-1px); }
.plan-card.featured .plan-installments { color: var(--rose-light); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; padding-top: 22px; border-top: 1px solid rgba(0,0,0,0.06); }
.plan-card.featured .plan-features { border-top-color: rgba(255,255,255,0.1); }
.plan-features li { font-size: 0.86rem; padding-left: 24px; position: relative; line-height: 1.5; color: var(--text); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.78); }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--olive); font-weight: 700; font-size: 0.85rem; }
.plan-card.featured .plan-features li::before { color: var(--rose-light); }
.plan-card .btn-primary { display: flex; justify-content: center; width: 100%; }
.plan-card.featured .btn-primary { background: var(--accent); }
.plan-card.featured .btn-primary:hover { background: var(--rose-light); color: var(--brown); }

/* ── Bloque de precio ARS-first (plan +Energía y cierre de compra) ── */
.price-block { margin: 4px 0 22px; }
.price-launch {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent-deep);
  background: var(--rose-pale); border: 1px solid var(--rose-light);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
}
.price-cuota { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.price-cuota-n { font-size: 0.98rem; color: var(--text-light); font-weight: 400; }
.price-cuota-amount {
  font-family: var(--font-display); font-size: 2.7rem; font-weight: 600;
  color: var(--brown); line-height: 1;
}
.price-secondary { font-size: 0.88rem; color: var(--text-light); margin-top: 9px; font-weight: 400; }
.price-secondary s { opacity: 0.7; margin: 0 2px; }
.price-onepay {
  font-size: 0.98rem; color: var(--text); margin-top: 10px; font-weight: 400;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.price-onepay strong { color: var(--brown); font-weight: 700; }
.price-onepay-save {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--olive); background: var(--olive-light); border-radius: 100px; padding: 3px 10px;
}
.final-cta .price-onepay { justify-content: center; }

/* Sobre fondo oscuro (ej. plan VIP featured, por si se reusa) */
.price-block-featured .price-cuota-amount,
.plan-card.featured .price-cuota-amount { color: #fff; }
.plan-card.featured .price-cuota-n,
.plan-card.featured .price-secondary { color: rgba(255,255,255,0.6); }

/* Cierre de compra corto (variante corta / WhatsApp) */
.final-cta { padding: 84px 0; background: var(--cream); }
.final-cta .price-block { text-align: center; }
.final-cta .price-cuota { justify-content: center; }
.final-cta-card {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--cream-dark); border-radius: 28px;
  padding: 48px 38px; box-shadow: 0 20px 50px rgba(74,50,40,0.07);
}
.final-cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.final-cta-card h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--brown); margin-bottom: 26px; line-height: 1.15; }
.final-cta-card h2 em { font-style: italic; color: var(--accent-deep); }
.final-cta-price { display: flex; align-items: baseline; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 26px; }
.final-cta-curr { font-size: 1.2rem; color: var(--text-light); font-weight: 500; }
.final-cta-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--brown); line-height: 1; }
.final-cta-inst { width: 100%; font-size: 0.9rem; color: var(--text-light); margin-top: 6px; }
.final-cta .btn-primary { font-size: 1.05rem; padding: 17px 44px; }
.final-cta-guarantee { margin-top: 18px; font-size: 0.85rem; color: var(--brown-warm); font-weight: 500; }
.final-cta-alumni { margin-top: 12px; font-size: 0.8rem; color: var(--text-light); font-weight: 300; line-height: 1.5; }
.final-cta-alumni strong { font-weight: 600; color: var(--accent-deep); }

/* Guarantee strip (shared) */
.guarantee { max-width: 760px; margin: 40px auto 0; display: flex; align-items: center; gap: 24px; background: var(--white); border: 1px solid rgba(122,139,111,0.25); border-radius: 20px; padding: 28px 32px; }
.guarantee-seal {
  flex-shrink: 0; width: 94px; height: 94px; border-radius: 50%; background: var(--olive-light); border: 2px dashed var(--olive);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--olive); text-align: center; line-height: 1.05; padding: 6px;
}
.guarantee-seal strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
.guarantee-seal small { font-size: 0.62rem; letter-spacing: 0.5px; text-transform: uppercase; max-width: 80px; line-height: 1.2; margin-top: 3px; }
.guarantee h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--brown); margin-bottom: 6px; font-weight: 600; }
.guarantee p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }
.payment-logos { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.payment-logos span { font-size: 0.78rem; color: var(--text-light); }
.pay-chip { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; padding: 7px 14px; font-size: 0.78rem; font-weight: 600; color: var(--brown-warm); }

/* ═══════════ FAQ ═══════════ */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-question {
  width: 100%; background: none; border: none; padding: 24px 0; text-align: left; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--brown); transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-deep); }
.faq-question .icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--accent); transition: all 0.3s;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--accent); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 320px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; font-weight: 300; padding-right: 44px; }

/* ═══════════ CLOSING ═══════════ */
.closing { padding: 100px 0 120px; background: linear-gradient(180deg, var(--cream) 0%, var(--rose-pale) 100%); text-align: center; }
.closing-quote {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 400; font-style: italic;
  color: var(--brown); line-height: 1.35; max-width: 680px; margin: 0 auto 40px;
}
.closing-quote em { color: var(--accent-deep); font-weight: 500; }
.closing-faq { margin-top: 28px; font-size: 0.88rem; color: var(--text-light); }
.closing-faq a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--brown); padding: 48px 0; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.footer p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ═══════════ STICKY CTA ═══════════ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: rgba(74,50,40,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #fff; padding: 14px 24px;
  display: flex; align-items: center; justify-content: center; gap: 24px; transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-text { font-size: 0.9rem; }
.sticky-cta-text strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--rose-light); }
.sticky-cta-text s { color: rgba(255,255,255,0.45); margin-right: 6px; }
.sticky-cta .btn-primary { padding: 11px 28px; font-size: 0.88rem; }
.sticky-cta-close { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.2rem; cursor: pointer; padding: 4px; }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 1; transform: translateY(22px); transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { transform: translateY(0); }

/* Accesibilidad / entornos sin animación: nunca dejar contenido invisible */
@media (prefers-reduced-motion: reduce) {
  .hero-tag, .hero-title, .hero-desc, .hero-cta-group, .hero-trust, .hero-image-wrap,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ═══════════ RESPONSIVE ═══════════ */
/* Tablet / desktop angosto: las 4 cápsulas de "la evolución" pasan a 2×2
   antes de colapsar a 1 columna en mobile. */
@media (max-width: 1080px) {
  .shift-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 96px; gap: 24px; }
  .hero-desc { margin: 0 auto 24px; }
  .hero-cta-group, .hero-trust { justify-content: center; }
  /* El título lidera: la foto baja y se achica para acompañar, no tapar. */
  .hero-image-wrap { order: 1; max-width: 230px; margin: 4px auto 0; }
  /* Versión corta (WhatsApp): la foto es una banda full-width y baja, de borde
     a borde, con la imagen zoomeada (más profundidad / "doble click"). */
  .page-corta .hero-image-wrap {
    width: 100vw; max-width: 100vw; aspect-ratio: 2 / 1;
    margin: 10px 0 0; margin-left: calc(-50vw + 50%); overflow: hidden;
  }
  .page-corta .hero-image-wrap image-slot,
  .page-corta .hero-image-wrap img {
    border-radius: 0; box-shadow: none;
    transform: scale(1.15); transform-origin: center 40%;
  }
  .hero-badge { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-quote { order: -1; }
  .amira-grid { grid-template-columns: 1fr; }
  .amira-photo { max-width: 320px; margin: 0 auto; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .shift-grid { grid-template-columns: 1fr; gap: 16px; }
  .shift { padding: 68px 0; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 540px; margin: 48px auto 0; }
  .for-who-compact { grid-template-columns: 1fr; }
  .lead-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .offer-a { grid-template-columns: 1fr; }
  .offer-c { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .guarantee { flex-direction: column; text-align: center; }
  .test-cta { flex-direction: column; text-align: center; padding: 28px 24px; }
  .team-strip-items { gap: 16px 24px; }
  .sticky-cta { flex-direction: row; gap: 14px; padding: 12px 16px; }
  .sticky-cta-text { font-size: 0.8rem; }
}
@media (max-width: 600px) {
  .includes-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .nav-login { font-size: 0.76rem; padding: 8px 14px; }
  .section-title { font-size: 1.8rem; }
  .section-wave { height: 30px; }
  .offer-a-left, .offer-a-right, .offer-b { padding: 32px 24px; }
  .final-cta { padding: 60px 0; }
  .final-cta-card { padding: 36px 22px; }
  .final-cta-card h2 { font-size: 1.55rem; }
  .final-cta-amount { font-size: 2.6rem; }
  .sticky-cta-text s { display: none; }
  /* Callout más compacto en mobile: solo "Hacé tu test gratis →" */
  .top-callout { font-size: 0.78rem; height: 38px; gap: 8px; }
  .top-callout-sep, .top-callout-sub { display: none; }
  .nav { top: 38px; }
  #hacer-test { scroll-margin-top: 100px; }
}
