/* =========================
   LA FÓRMULA PARA ESCALAR
   Static landing page
   ========================= */

:root {
  --bg: #ffffff;
  --tint: #f8f7f2;
  --ink: #2c2b2a;
  --muted: #655f5a;

  --lavender: #2450FF;
  --lavender-dark: #1739D6;

  --green: #708f4e;
  --border: #d7d2cb;
  --placeholder: #f1eee8;
  --shadow: 0 14px 35px rgba(34, 30, 28, .08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: min(calc(100% - 52px), var(--max));
  margin: 0 auto;
}

.container.narrow { max-width: 820px; }
.container.medium { max-width: 900px; }

.center { text-align: center; }

.section {
  padding: 96px 0;
}

.section-white { background: #fff; }
.section-tint { background: var(--tint); }
.section-final { background: #fbfaf8; }

.hero { padding-top: 60px; }

.display {
  margin: 0 auto 34px;
  font-size: clamp(2.813rem, 7.5vw, 6.075rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.display.dark { color: var(--ink); }
.lavender { color: var(--lavender); }
.olive { color: #6B874C; }

.subhead {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: clamp(1.463rem, 4vw, 2.913rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.02em;
}

.section-title {
  margin: 0 auto 36px;
  font-size: clamp(2.013rem, 5.6vw, 4.013rem);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 800;
}

.lead {
  max-width: 780px;
  margin: 40px auto 0;
  font-size: clamp(1.163rem, 3.2vw, 2.013rem);
  line-height: 1.35;
}

.italic { font-style: italic; }

.eyebrow {
  margin: 32px 0 32px;
  font-size: clamp(0.975rem, 2.4vw, 1.475rem);
  font-style: italic;
}

.cta {
  display: block;
  width: min(calc(100% - 36px), 650px);
  margin: 40px auto 0;
  padding: 24px 32px;
  border-radius: 12px;
  background: var(--lavender);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.025em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(36, 80, 255, .22);
}

.cta:hover {
  transform: translateY(-2px);
  background: var(--lavender-dark);
  box-shadow: 0 14px 28px rgba(36, 80, 255, .28);
}

.cta:focus-visible {
  outline: 4px solid rgba(36, 80, 255, .35);
  outline-offset: 4px;
}

.cta-olive {
   display: block;
  width: min(calc(100% - 36px), 650px);
  margin: 40px auto 0;
  padding: 24px 32px;
  border-radius: 12px;
   background: #6B874C;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.025em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(36, 80, 255, .22);
}

.cta-olive:hover {
  background: #56703c;
  box-shadow: 0 14px 28px rgba(107, 135, 76, .28);
}

.cta-olive:focus-visible {
  outline: 4px solid rgba(107, 135, 76, .35);
}

.mockup {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 44px auto;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 80, 255, .05), rgba(112,143,78,.05)),
    var(--placeholder);
  color: #8c857e;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .775rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 24px;
}

.mockup-xl { min-height: 480px; }
.mockup-lg { min-height: 360px; }
.mockup-proof { min-height: 430px; }

.checklist {
  margin: 52px auto 34px;
  display: grid;
  gap: 34px;
}

.check-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  align-items: start;
}

.check-row p { margin: 0; font-size: clamp(1.225rem, 3vw, 1.975rem); line-height: 1.35; }

.check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lavender);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.more {
  margin: 42px 0 26px;
  font-size: clamp(2.175rem, 6vw, 4.475rem);
  line-height: 1;
}

.proof-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.scroll-note {
  margin: 40px auto 0;
  max-width: 760px;
  font-size: clamp(0.975rem, 2.6vw, 1.425rem);
}

.product-mockup {
  display: block;
  width: 100%;
  max-width: 850px;
  height: auto;
  margin: 0 auto 40px;
}

.offer-card {
  padding: 0 0 32px;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--border);
}

.offer-card:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.offer-card h3 {
  margin: 32px 0 26px;
  font-size: clamp(1.875rem, 4.9vw, 3.375rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.offer-card p {
  margin: 0 0 22px;
  font-size: clamp(1.125rem, 3vw, 1.875rem);
}

.price-line {
  font-size: clamp(1.375rem, 3.5vw, 2.125rem) !important;
}

.old-price {
  text-decoration: line-through;
  color: #c2352b;
  margin-right: 8px;
}

.price-line strong {
  color: #2f9c2f;
}

.testimonial-intro {
  font-size: clamp(1.125rem, 2.7vw, 1.675rem);
  margin-bottom: 36px;
}

.testimonial-grid {
  display: grid;
  gap: 24px;
}

.testimonial {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0;
  font-size: clamp(1.075rem, 2.6vw, 1.525rem);
  line-height: 1.45;
}

.testimonial figcaption {
  margin-top: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .875rem;
  font-weight: 700;
}

/* Deliberately hidden until replaced by real, verifiable testimonials */
.hidden-until-real {
  display: none;
}

.footer {
  background: #222;
  color: #fff;
  padding: 26px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .825rem;
}

.footer p { margin: 0; opacity: .8; }

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 40px; }
  .mockup-xl { min-height: 320px; }
  .mockup-lg { min-height: 260px; }
  .mockup-proof { min-height: 300px; }
  .check-row {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .check {
    width: 42px;
    height: 42px;
    font-size: 1.375rem;
  }
 
   .cta {
  display: block;
  width: min(calc(100% - 36px), 650px);
  margin: 40px auto 0;
  padding: 24px 32px;
  border-radius: 12px;
  background: var(--lavender);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.025em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(36, 80, 255, .22);
}
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta { transition: none; }
}
