/* TecnoSOS — Tienditas · "la tiendita que sí cobra con tarjeta"
   Softened flag-green + orange. Space Grotesk + Fraunces italic accents.
   WA green only on WhatsApp CTAs. */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #F4F6F1;
  --paper-deep: #E6EBE3;
  --card: #FFFFFF;
  --ink: #1A221C;
  --ink-2: #4A564E;
  --ink-3: #8A948C;
  --line: rgba(26, 34, 28, 0.12);
  --green: #2F6B4F;
  --green-deep: #1F4A36;
  --green-soft: #3D7A5C;
  --green-wash: rgba(47, 107, 79, 0.12);
  --green-wash-strong: rgba(47, 107, 79, 0.18);
  --orange: #E07A2F;
  --orange-deep: #C4631F;
  --orange-text: #9A4E14;
  --orange-wash: rgba(224, 122, 47, 0.14);
  --orange-wash-strong: rgba(224, 122, 47, 0.22);
  --amber: #E8A317;
  --wa: #25D366;
  --wa-ink: #0B3D22;
  --ivory: #F4F6F1;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --display: "Space Grotesk", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --body: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { padding: 0; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

body {
  background:
    radial-gradient(ellipse 70% 45% at 95% -8%, var(--orange-wash), transparent 55%),
    radial-gradient(ellipse 55% 40% at -8% 25%, var(--green-wash), transparent 50%),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.115rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, 68rem); margin-inline: auto; }
section { scroll-margin-top: 5rem; }

/* ---------- Type ---------- */
h1, h2 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.8rem, 4.4vw, 2.75rem); max-width: 26ch; }
h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

.kicker {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.section-sub { color: var(--ink-2); max-width: 56ch; margin-top: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
  min-height: 3.4rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.6); }
.btn-ghost { border: 2px solid var(--ink); color: var(--ink); background: transparent; }
.btn-ink { background: var(--ink); color: var(--ivory); }
@media (hover: hover) {
  .btn-wa:hover { filter: brightness(1.04); transform: translateY(-2px); }
  .btn-ghost:hover, .btn-ink:hover { transform: translateY(-2px); }
}

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4rem; }
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }

.beacon {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber);
  margin-left: 2px;
  animation: sos 3.8s infinite;
}
@keyframes sos {
  0%, 100% { opacity: 0.25; }
  3%, 7% { opacity: 1; }
  5%, 10% { opacity: 0.25; }
  13%, 17% { opacity: 1; }
  15%, 20% { opacity: 0.25; }
  26%, 44% { opacity: 1; }
  52% { opacity: 0.25; }
}

.head-nav { display: none; gap: 1.4rem; }
.head-nav a { text-decoration: none; font-weight: 600; font-size: 0.94rem; color: var(--ink-2); }
.head-nav a:hover { color: var(--ink); }
@media (min-width: 920px) { .head-nav { display: flex; } }
.btn-head { padding: 0.5rem 1.05rem; min-height: 2.6rem; font-size: 0.92rem; box-shadow: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 8vw, 6rem); }
.hero::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -15%;
  width: 30rem; height: 30rem; border-radius: 50%;
  background: radial-gradient(closest-side, var(--green-wash-strong), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 22rem; height: 22rem; border-radius: 50%;
  background: radial-gradient(closest-side, var(--orange-wash), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 2.5rem; } }

.hero h1 { font-size: clamp(2.4rem, 7vw, 4.1rem); max-width: 15ch; }
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
}
.hero-sub { margin-top: 1.3rem; font-size: clamp(1.08rem, 2.4vw, 1.22rem); color: var(--ink-2); max-width: 50ch; }
.hero-sub strong { color: var(--ink); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-proof { margin-top: 1.9rem; font-size: 0.95rem; color: var(--ink-2); max-width: 44ch; border-left: 3px solid var(--orange); padding-left: 0.9rem; }

/* ---------- POS ticket (hero) ---------- */
.hero-ticket { margin: 0 auto; max-width: 20rem; }
.ticket {
  position: relative;
  background: #FFFEF8;
  border: 1px solid rgba(26, 34, 28, 0.14);
  border-radius: 4px;
  padding: 1.35rem 1.25rem 1.5rem;
  font-family: var(--mono);
  box-shadow:
    0 28px 50px -28px rgba(26, 34, 28, 0.4),
    0 0 0 1px rgba(26, 34, 28, 0.04);
  transform: rotate(-1.2deg);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 10px;
  background:
    radial-gradient(circle at 8px 0, transparent 7px, #FFFEF8 7.5px) 0 0 / 16px 10px repeat-x;
}
.ticket::before { top: -9px; transform: scaleY(-1); }
.ticket::after { bottom: -9px; }
.ticket-brand {
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  margin-bottom: 0.15rem;
}
.ticket-meta {
  text-align: center;
  font-size: 0.68rem;
  color: var(--ink-3);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}
.ticket-rule {
  border: 0;
  border-top: 1px dashed rgba(26, 34, 28, 0.22);
  margin: 0.7rem 0;
}
.ticket-rows { display: grid; gap: 0.35rem; font-size: 0.78rem; color: var(--ink-2); }
.ticket-rows div { display: flex; justify-content: space-between; gap: 1rem; }
.ticket-rows b { color: var(--ink); font-weight: 600; }
.ticket-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 0.35rem;
}
.ticket-pay {
  margin-top: 0.85rem;
  text-align: center;
  background: var(--green-wash);
  color: var(--green-deep);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--green-wash-strong);
}
.ticket-pay span {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--ink-3);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}
.ticket-barcode {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5px;
  height: 1.55rem;
  margin-top: 0.95rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(26, 34, 28, 0.18);
}
.ticket-barcode span {
  display: block;
  width: 1.5px;
  background: var(--ink);
  opacity: 0.72;
  border-radius: 0.5px;
}
.ticket-barcode span:nth-child(4n) { width: 2.5px; height: 100%; }
.ticket-barcode span:nth-child(4n+1) { height: 78%; }
.ticket-barcode span:nth-child(4n+2) { height: 100%; }
.ticket-barcode span:nth-child(4n+3) { height: 62%; width: 1px; }
.ticket-barcode span:nth-child(3n) { opacity: 0.55; }
.hero-ticket figcaption {
  margin-top: 1.3rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  text-align: center;
  transform: rotate(0);
}

/* ---------- Phone mockup (WhatsApp) ---------- */
.phone {
  background: var(--ink);
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 30px 60px -30px rgba(18, 23, 28, 0.45), 0 0 0 1px rgba(18, 23, 28, 0.06);
}
.phone-screen {
  background: var(--paper-deep);
  border-radius: 33px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-head {
  display: flex; align-items: center; gap: 0.65rem;
  background: #075E54;
  color: #fff;
  padding: 1.05rem 1rem 0.8rem;
}
.chat-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  flex: none;
}
.chat-name { display: flex; flex-direction: column; font-weight: 600; font-size: 0.93rem; line-height: 1.25; }
.chat-name small { font-weight: 400; font-size: 0.72rem; opacity: 0.85; }
.chat-body { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.9rem 0.8rem 1.1rem; }
.msg {
  position: relative;
  max-width: 85%;
  font-size: 0.86rem;
  line-height: 1.45;
  padding: 0.5rem 0.7rem 0.95rem;
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(18, 23, 28, 0.08);
}
.msg time {
  position: absolute; right: 0.6rem; bottom: 0.28rem;
  font-size: 0.6rem; color: rgba(18, 23, 28, 0.45);
}
.msg-in { background: #FFFFFF; align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-out { background: #D9FDD3; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-order {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.7rem 0.8rem 1rem;
  border: 1px solid var(--green-wash-strong);
  background: #D9FDD3;
  align-self: flex-end;
  max-width: 88%;
}
.msg-order strong { font-size: 0.86rem; color: var(--ink); }
.msg-order span { font-size: 0.8rem; color: var(--ink-2); }
.msg-photo {
  position: relative;
  align-self: flex-start;
  max-width: 72%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(18, 23, 28, 0.08);
}
.msg-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.msg-photo time {
  position: absolute; right: 0.45rem; bottom: 0.3rem;
  font-size: 0.6rem; color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.demo-note { font-size: 0.8rem; color: var(--ink-3); }
p.demo-note { margin-top: 2rem; text-align: center; }
.evidence-grid figcaption {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  text-align: center;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.8rem, 9vw, 6.2rem) 0; }
.strip { background: var(--paper-deep); border-block: 1px solid var(--line); }
.strip.section + .section { border-top: 0; }

/* ---------- Pains ---------- */
.pain-grid { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 760px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
}
.pain h3 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.45rem; }
.pain p { font-size: 0.99rem; color: var(--ink-2); }

/* ---------- Sistema ---------- */
.sys-grid { display: grid; gap: 1.9rem 2.2rem; margin-top: 2.4rem; }
@media (min-width: 680px) { .sys-grid { grid-template-columns: repeat(2, 1fr); } }
.sys > svg { width: 30px; height: 30px; color: var(--green); margin-bottom: 0.75rem; }
.sys:nth-child(1) > svg,
.sys:nth-child(4) > svg { color: var(--orange-deep); }
.sys h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.sys p { color: var(--ink-2); font-size: 1rem; max-width: 46ch; }

/* ---------- Evidencia ---------- */
.evidence-grid { display: grid; gap: 2rem; margin-top: 2.6rem; }
@media (min-width: 940px) {
  .evidence-grid { grid-template-columns: 7fr 5fr; align-items: start; }
  .browser-mock { grid-row: span 2; }
}
.evidence-grid figure { margin: 0; }

.browser {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(18, 23, 28, 0.35);
}
.browser-bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #D2D8DD; }
.browser-bar i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem 0.75rem;
  margin-left: 0.5rem;
}
.browser-body.browser-site { padding: 0; background: var(--ink); }

.mini-nav {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 1.15rem;
  background: rgba(26, 34, 28, 0.96);
  border-bottom: 1px solid rgba(244, 246, 241, 0.08);
}
.mini-nav b { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: #F4F6F1; }
.mini-nav span { font-size: 0.7rem; color: rgba(244, 246, 241, 0.5); letter-spacing: 0.02em; }

.mini-hero {
  position: relative;
  isolation: isolate;
  min-height: 15.5rem;
  overflow: hidden;
}
.mini-hero > img {
  width: 100%;
  height: 100%;
  min-height: 15.5rem;
  object-fit: cover;
  object-position: center 40%;
}
.mini-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 34, 28, 0.88) 0%, rgba(26, 34, 28, 0.55) 48%, rgba(26, 34, 28, 0.18) 100%),
    linear-gradient(to top, rgba(26, 34, 28, 0.55), transparent 45%);
  pointer-events: none;
}
.mini-hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.35rem 1.2rem 1.45rem;
  max-width: 34rem;
}
.mini-kicker {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.45rem;
}
.mini-h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.1;
  color: #FFFEF8;
  text-wrap: balance;
}
.mini-sub {
  font-size: 0.86rem;
  color: rgba(244, 246, 241, 0.78);
  margin-top: 0.45rem;
  max-width: 34ch;
  line-height: 1.45;
}
.mini-cta {
  display: inline-block;
  margin-top: 0.95rem;
  background: var(--wa);
  color: var(--wa-ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  box-shadow: 0 8px 20px -10px rgba(37, 211, 102, 0.55);
}

.mini-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  padding: 0.75rem;
  background: var(--paper);
}
.mini-services article {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 34, 28, 0.08);
  box-shadow: 0 10px 24px -18px rgba(26, 34, 28, 0.35);
}
.mini-services img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.mini-services div {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.55rem 0.6rem 0.7rem;
}
.mini-services span {
  font-size: 0.72rem;
  color: var(--ink-2);
  line-height: 1.25;
}
.mini-services b {
  font-family: var(--display);
  font-size: 0.82rem;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
@media (max-width: 420px) {
  .mini-services { grid-template-columns: 1fr; }
  .mini-services article { display: grid; grid-template-columns: 5.5rem 1fr; align-items: center; }
  .mini-services img { aspect-ratio: 1; }
}

/* Compact ticket in evidence */
.ticket-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1.35rem;
  box-shadow: 0 18px 40px -28px rgba(18, 23, 28, 0.35);
}
.ticket-card .ticket {
  transform: none;
  box-shadow: none;
  margin: 0 auto;
  max-width: 17rem;
}
.ticket-card .ticket::before,
.ticket-card .ticket::after { display: none; }
.ticket-card .ticket {
  border-radius: 10px;
  border: 1px dashed rgba(26, 34, 28, 0.2);
}

.delivery-phone { max-width: 21rem; margin: 0 auto; }

/* ---------- Fotos ---------- */
.photo { margin: 0; }
.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px -26px rgba(18, 23, 28, 0.45);
}
.photo figcaption {
  margin-top: 0.7rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.photo-strip { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 680px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Paquetes ---------- */
.pack-grid { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 900px) { .pack-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pack {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.pack h3 { font-size: 1.25rem; }
.pack-for { font-size: 0.9rem; color: var(--ink-2); margin-top: 0.25rem; }
.pack-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.15rem;
  letter-spacing: -0.02em;
  margin: 0.9rem 0 1rem;
  color: var(--green-deep);
}
.pack-price span { font-size: 0.95rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; }
.pack ul { list-style: none; display: grid; gap: 0.5rem; margin-bottom: 1.4rem; }
.pack li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.96rem;
  color: var(--ink-2);
}
.pack li::before {
  content: "";
  position: absolute; left: 0; top: 0.42em;
  width: 0.85rem; height: 0.45rem;
  border-left: 2.2px solid var(--green);
  border-bottom: 2.2px solid var(--green);
  transform: rotate(-45deg);
}
.pack .btn-card { margin-top: auto; padding: 0.8rem 1rem; min-height: 3.1rem; font-size: 0.98rem; box-shadow: none; }

.pack-featured { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.pack-featured h3 { color: var(--ivory); }
.pack-featured .pack-for, .pack-featured li { color: rgba(244, 246, 241, 0.75); }
.pack-featured .pack-price { color: var(--ivory); }
.pack-featured .pack-price span { color: rgba(244, 246, 241, 0.65); }
.pack-featured li::before { border-color: var(--orange); }
.pack-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.starter {
  margin-top: 1.6rem;
  background: var(--orange-wash);
  border: 1px solid var(--orange-wash-strong);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.starter h3 { font-size: 1.3rem; color: var(--orange-text); }
.starter p { margin-top: 0.5rem; color: var(--ink-2); max-width: 52ch; }
.starter p strong { color: var(--ink); font-family: var(--display); }

.honesty {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-2);
  max-width: 58ch;
  border-left: 3px solid var(--green);
  padding-left: 0.9rem;
}
.honesty strong { color: var(--green-deep); }
.honesty em { color: var(--orange-text); font-style: italic; font-family: var(--serif); }

.pay-terms { list-style: none; display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 820px) { .pay-terms { grid-template-columns: repeat(3, 1fr); } }
.pay-terms li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.93rem; color: var(--ink-2);
}
.pay-terms svg { width: 24px; height: 24px; flex: none; color: var(--green); margin-top: 0.1rem; }
.pay-terms strong { color: var(--ink); }

/* ---------- Extras ---------- */
.extras-grid { list-style: none; display: grid; gap: 0.9rem; margin-top: 2.2rem; }
@media (min-width: 680px) { .extras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
.extras-grid li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}
.extras-grid svg { width: 26px; height: 26px; flex: none; color: var(--green-soft); margin-top: 0.15rem; }
.extras-grid span { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.96rem; }
.extras-grid b { font-family: var(--display); font-size: 0.92rem; color: var(--orange-text); }

/* ---------- FAQ ---------- */
.faq { margin-top: 2.2rem; display: grid; gap: 0.7rem; max-width: 46rem; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.faq summary {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.35;
  padding: 1.05rem 3.2rem 1.05rem 1.25rem;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-52%);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--green);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 1.25rem 1.2rem; color: var(--ink-2); max-width: 60ch; }
.faq details p strong { color: var(--ink); }

/* ---------- Final ---------- */
.final { background: var(--ink); color: var(--ivory); text-align: center; padding: clamp(4.5rem, 10vw, 7rem) 0 2.2rem; }
.final-mark { margin: 0 auto 1.6rem; }
.final h2 { color: var(--ivory); margin-inline: auto; max-width: 22ch; }
.final > .wrap > p { color: rgba(244, 246, 241, 0.72); max-width: 46ch; margin: 1rem auto 2rem; }
.btn-big { padding: 1.15rem 2.1rem; font-size: 1.1rem; }

.foot {
  margin-top: 4.5rem;
  border-top: 1px solid rgba(244, 246, 241, 0.14);
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(244, 246, 241, 0.6);
}
.foot .legal { font-size: 0.78rem; margin-top: 0.5rem; }
.foot a { color: rgba(244, 246, 241, 0.75); }

/* ---------- Sticky WhatsApp (móvil) ---------- */
.sticky-wa {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: linear-gradient(transparent, rgba(18, 23, 28, 0.06) 30%, rgba(18, 23, 28, 0.12));
  transform: translateY(120%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s 0.35s;
  pointer-events: none;
}
.sticky-wa.show {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s 0s;
  pointer-events: auto;
}
.btn-sticky { width: 100%; font-size: 1rem; }
@media (min-width: 768px) { .sticky-wa { display: none; } }

/* ---------- Reveals ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); }
html.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s ease; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .beacon { animation: none; opacity: 1; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .sticky-wa { transition: none; }
  .ticket { transform: none; }
}
