@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --lp-bg:             #EEF6F2;
  --lp-surface:        #ffffff;
  --lp-text:           #0B2F25;
  --lp-muted:          #5D746C;
  --lp-primary:        #062E1E;
  --lp-primary-dark:   #03190F;
  --lp-secondary:      #72D1A0;
  --lp-secondary-hover:#88dab2;
  --lp-secondary-dim:  rgba(114, 209, 160, 0.18);
  --lp-secondary-mid:  rgba(114, 209, 160, 0.40);
  --lp-border:         rgba(114, 209, 160, 0.28);
  --lp-shadow:         0 8px 28px rgba(6, 46, 30, 0.08);
  --lp-shadow-md:      0 16px 40px rgba(6, 46, 30, 0.12);
  --lp-radius:         20px;
  --lp-radius-sm:      14px;
  --lp-container:      1160px;
  --lp-font-body:      'DM Sans', system-ui, sans-serif;
  --lp-font-display:   'DM Serif Display', Georgia, serif;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--lp-font-body);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  width: min(calc(100% - 40px), var(--lp-container));
  margin-inline: auto;
}
.section        { padding: 80px 0; }
.section--tight { padding: 52px 0; }
.section__header { max-width: 680px; margin-bottom: 48px; }
.section__header .lead { margin-top: 12px; }

/* Fix anchor offset for sticky header */
[id] { scroll-margin-top: 90px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.h1, .h2, .h3 { margin: 0 0 16px; line-height: 1.1; }
.h1, .h2 {
  font-family: var(--lp-font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--lp-font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.h2 { font-size: clamp(1.9rem, 3.2vw, 3.2rem); }
.h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); }
.lead {
  margin: 0;
  color: var(--lp-muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.7;
}
.text-muted { color: var(--lp-muted); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.10s; }
  .reveal-delay-2 { transition-delay: 0.20s; }
  .reveal-delay-3 { transition-delay: 0.30s; }
  .reveal-delay-4 { transition-delay: 0.40s; }
}

/* ─── BADGE ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--lp-secondary-dim);
  color: var(--lp-primary);
  font-weight: 700;
  font-size: .88rem;
  border: 1px solid var(--lp-border);
}
.badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lp-secondary);
  flex-shrink: 0;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 3px solid var(--lp-secondary);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--lp-secondary);
  outline-offset: 2px;
}
.skip-link:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  width: auto !important;
  height: auto !important;
  padding: 10px 16px !important;
  margin: 0 !important;
  clip: auto !important;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  z-index: 200;
  outline: 3px solid var(--lp-secondary);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(6, 46, 30, .22);
}
.btn--primary:hover {
  background: var(--lp-primary-dark);
  box-shadow: 0 12px 32px rgba(6, 46, 30, .30);
}
.btn--secondary {
  background: transparent;
  border-color: rgba(6, 46, 30, .22);
  color: var(--lp-text);
}
.btn--secondary:hover {
  border-color: var(--lp-secondary);
  background: var(--lp-secondary-dim);
}
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .28);
}
.btn--whatsapp:hover {
  background: #1ebe5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .38);
}

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(238, 246, 242, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--lp-primary);
  flex-shrink: 0;
}
.brand__logo {
  width: 40px; height: 40px;
  border-radius: 11px;
  overflow: hidden;
  background: var(--lp-secondary-dim);
  border: 1px solid var(--lp-border);
  flex-shrink: 0;
}
.brand__logo img { width: 100%; height: 100%; object-fit: cover; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header__nav a {
  color: var(--lp-muted);
  font-weight: 600;
  font-size: .93rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.header__nav a:hover { color: var(--lp-primary); background: var(--lp-secondary-dim); }
.header__cta { flex-shrink: 0; }
.header__cta .btn { min-height: 42px; padding: 0 20px; font-size: .9rem; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 7px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
}
.header__hamburger:hover { background: var(--lp-secondary-dim); }
.header__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--lp-primary);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__mobile-nav {
  display: none;
  flex-direction: column;
  padding: 14px 16px 20px;
  border-top: 1px solid var(--lp-border);
  gap: 4px;
  background: rgba(238, 246, 242, 0.98);
}
.header__mobile-nav.is-open { display: flex; }
.header__mobile-nav a {
  color: var(--lp-text);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background .15s;
}
.header__mobile-nav a:hover { background: var(--lp-secondary-dim); }
.header__mobile-nav .btn { margin-top: 8px; justify-content: center; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 8% 20%, rgba(114,209,160,.15), transparent),
    radial-gradient(ellipse 45% 40% at 92% 80%, rgba(6,46,30,.05), transparent);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { position: relative; z-index: 1; }
.hero__visual   { position: relative; z-index: 1; }
.hero__content .badge   { margin-bottom: 22px; }
.hero__content .h1      { margin-bottom: 18px; }
.hero__content .lead    { max-width: 480px; }
.hero__content .btn-group { margin-top: 32px; }

.hero-panel {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  box-shadow: var(--lp-shadow-md);
  overflow: hidden;
}
.hero-panel__top {
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(114,209,160,.14), rgba(114,209,160,.04));
  border-bottom: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-panel__brand { display: flex; align-items: center; gap: 11px; }
.hero-panel__mini-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--lp-secondary-dim);
  border: 1px solid var(--lp-border);
  flex-shrink: 0;
}
.hero-panel__mini-logo img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel__brand strong { font-size: .9rem; display: block; line-height: 1.3; }
.hero-panel__brand .text-muted { font-size: .78rem; }
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--lp-secondary-dim);
  color: var(--lp-primary);
  font-weight: 700;
  font-size: .78rem;
  flex-shrink: 0;
}
.hero-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lp-secondary);
  animation: pulse-dot 2.4s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}
.hero-panel__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-panel__checks { display: flex; flex-direction: column; gap: 11px; }
.hero-panel__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  line-height: 1.45;
}
.hero-panel__check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lp-secondary-dim);
  color: var(--lp-primary);
  font-size: .7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-panel__footer {
  padding: 14px 22px;
  border-top: 1px solid var(--lp-border);
  background: rgba(6,46,30,.025);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-panel__footer-text { font-size: .85rem; color: var(--lp-muted); font-weight: 600; }
.hero-panel__footer-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--lp-primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ─── STATS SECTION ──────────────────────────────────── */
.stats-section {
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-grid .stat-item + .stat-item {
  border-left: 1px solid var(--lp-border);
}
.stat-item {
  padding: 20px 32px;
  text-align: center;
}
.stat-item__value {
  font-family: var(--lp-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--lp-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__value em {
  font-style: normal;
  color: var(--lp-secondary);
}
.stat-item__label {
  font-size: .9rem;
  color: var(--lp-muted);
  font-weight: 600;
}

/* ─── CARDS (how it works) ───────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  box-shadow: var(--lp-shadow);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--lp-shadow-md); transform: translateY(-2px); }
.card__step {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--lp-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.card .h3 { margin-bottom: 8px; }
.card p:last-child, .card .text-muted:last-child { margin-bottom: 0; }

/* ─── ICON LIST (qué revisamos) ──────────────────────── */
.icon-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.icon-list .card { padding: 22px; }
.card__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--lp-secondary-dim);
  border: 1px solid var(--lp-border);
  font-size: 1.2rem;
  line-height: 1;
}
.card__icon--svg svg {
  width: 22px; height: 22px;
  stroke: var(--lp-primary);
}

/* ─── VALUE BLOCK ────────────────────────────────────── */
.value-block {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 40px 44px;
  box-shadow: var(--lp-shadow);
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 48px;
  align-items: center;
}
.value-block .h2 { margin-bottom: 12px; }
.value-block__divider {
  align-self: stretch;
  background: linear-gradient(to bottom, transparent 5%, var(--lp-secondary) 40%, var(--lp-secondary) 60%, transparent 95%);
  border-radius: 2px;
  min-height: 80px;
  opacity: 0.7;
}

/* ─── TRUST (fondo oscuro) ───────────────────────────── */
.trust-section {
  background: var(--lp-primary);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(114,209,160,.10), transparent),
    radial-gradient(ellipse 40% 40% at 100% 10%, rgba(114,209,160,.06), transparent);
  pointer-events: none;
}
.trust-section .container { position: relative; z-index: 1; }
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust-section .h2 {
  color: #fff;
  font-family: var(--lp-font-display);
  font-weight: 400;
}
.trust-section .lead { color: rgba(255,255,255,.68); margin-top: 12px; }
.trust-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(114,209,160,.20);
  background: rgba(255,255,255,.04);
  transition: background .2s, border-color .2s;
}
.trust-pill:hover {
  background: rgba(114,209,160,.08);
  border-color: rgba(114,209,160,.35);
}
.trust-pill__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-pill__text strong {
  display: block;
  color: #fff;
  font-size: .93rem;
  margin-bottom: 2px;
}
.trust-pill__text span {
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  line-height: 1.5;
}

/* ─── AUDIENCE ───────────────────────────────────────── */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.audience-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 22px 20px;
  box-shadow: var(--lp-shadow);
  transition: box-shadow .2s, transform .2s;
}
.audience-card:hover { box-shadow: var(--lp-shadow-md); transform: translateY(-2px); }
.audience-card__icon { font-size: 1.6rem; margin-bottom: 12px; line-height: 1; }
.audience-card__label { font-weight: 800; font-size: .95rem; color: var(--lp-primary); margin-bottom: 5px; }
.audience-card__desc { font-size: .86rem; color: var(--lp-muted); line-height: 1.55; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { background: var(--lp-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  box-shadow: var(--lp-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover { box-shadow: var(--lp-shadow-md); transform: translateY(-2px); }
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #F5A623;
  font-size: 1rem;
}
.testimonial-card__text {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--lp-text);
  flex: 1;
}
.testimonial-card__text::before { content: '\201C'; }
.testimonial-card__text::after  { content: '\201D'; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--lp-border);
  padding-top: 16px;
}
.testimonial-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lp-secondary-dim);
  border: 1px solid var(--lp-border);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .9rem;
  color: var(--lp-primary);
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: .9rem; color: var(--lp-primary); }
.testimonial-card__role { font-size: .82rem; color: var(--lp-muted); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--lp-secondary); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 24px;
  font-weight: 700;
  font-size: .98rem;
  position: relative;
  user-select: none;
  transition: background .15s;
}
.faq-item summary:hover { background: var(--lp-secondary-dim); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lp-secondary-dim);
  color: var(--lp-primary);
  font-size: 1rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.faq-item[open] summary::after { content: '\2212'; background: var(--lp-primary); color: #fff; }
.faq-item__content { padding: 4px 24px 22px; color: var(--lp-muted); line-height: 1.65; }

/* ─── CTA BOX ────────────────────────────────────────── */
.cta-box {
  background: var(--lp-primary);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(6,46,30,.18);
  position: relative;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(114,209,160,.12), transparent);
  pointer-events: none;
}
.cta-box__inner {
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative; z-index: 1;
}
.cta-box .h2   { color: #fff; margin-bottom: 10px; }
.cta-box .lead { color: rgba(255,255,255,.70); }
.cta-box .btn--primary {
  background: var(--lp-secondary);
  color: var(--lp-primary);
  box-shadow: 0 8px 24px rgba(114,209,160,.28);
  white-space: nowrap;
}
.cta-box .btn--primary:hover {
  background: var(--lp-secondary-hover, #88dab2);
  box-shadow: 0 12px 32px rgba(114,209,160,.38);
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact-wrap {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}
.contact-content {
  padding: 40px 36px;
  background: linear-gradient(160deg, rgba(114,209,160,.16), rgba(6,46,30,.05));
}
.contact-content .h2   { margin-bottom: 12px; }
.contact-content .lead { margin-bottom: 0; }
.contact-form { padding: 40px 36px; }

.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 6px; font-weight: 700; font-size: .9rem; }
.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--lp-border);
  border-radius: 12px;
  padding: 12px 16px;
  background: var(--lp-bg);
  color: var(--lp-text);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--lp-secondary);
  box-shadow: 0 0 0 3px rgba(114,209,160,.16);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field--error input,
.field--error textarea {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,.12);
}
.field__error-msg {
  display: none;
  font-size: .82rem;
  color: #c0392b;
  margin-top: 5px;
  font-weight: 600;
}
.field--error .field__error-msg { display: block; }

.form-note {
  font-size: .86rem;
  color: var(--lp-muted);
  margin-top: 14px;
  line-height: 1.55;
}
.form-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(114,209,160,.18);
  color: var(--lp-primary);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 18px;
  border: 1px solid var(--lp-border);
}

/* ─── LIST CHECKS ────────────────────────────────────── */
.list-checks { display: flex; flex-direction: column; gap: 11px; }
.list-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .93rem;
  line-height: 1.5;
}
.list-checks li::before {
  content: '\2713';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lp-secondary-dim);
  color: var(--lp-primary);
  font-weight: 800;
  font-size: .7rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── CONTACT EMAIL BOX ──────────────────────────────── */
.contact-email-box {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(6,46,30,.06);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
}
.contact-email-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--lp-muted);
  margin-bottom: 8px;
}
.contact-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-email-address {
  font-weight: 700;
  font-size: 1rem;
  color: var(--lp-primary);
  word-break: break-all;
}
.contact-email-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-primary);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.contact-email-copy:hover {
  background: var(--lp-secondary-dim);
  border-color: var(--lp-secondary);
}
.contact-form-intro {
  font-size: .9rem;
  color: var(--lp-muted);
  margin: 0 0 20px;
  line-height: 1.55;
  padding: 14px 16px;
  background: var(--lp-secondary-dim);
  border-radius: 10px;
  border: 1px solid var(--lp-border);
}
.file-upload-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  background: var(--lp-secondary-dim);
  border: 1px dashed var(--lp-secondary-mid);
  border-radius: 12px;
  font-size: .88rem;
  color: var(--lp-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.file-upload-hint__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* WhatsApp contact option */
.contact-whatsapp {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  transition: background .2s;
  text-decoration: none;
}
.contact-whatsapp:hover { background: rgba(37,211,102,.14); }
.contact-whatsapp__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #25D366;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.contact-whatsapp__text strong {
  display: block;
  font-size: .9rem;
  color: var(--lp-primary);
}
.contact-whatsapp__text span {
  font-size: .82rem;
  color: var(--lp-muted);
}

/* ─── FLOATING WHATSAPP ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.40);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.wa-float:focus-visible {
  outline: 3px solid rgba(114,209,160,.7);
  outline-offset: 3px;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,.50);
}

/* ─── 404 ────────────────────────────────────────────── */
.not-found {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0;
}
.not-found__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--lp-secondary-dim);
  border: 1px solid var(--lp-border);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--lp-primary);
}
.not-found .h2  { margin-bottom: 12px; }
.not-found .lead { margin: 0 auto; max-width: 360px; }

/* ─── LEGAL PAGES ────────────────────────────────────── */
.legal-page {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 48px 56px;
  box-shadow: var(--lp-shadow);
  max-width: 800px;
  margin: 0 auto;
}
.legal-page__title {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lp-border);
}
.legal-page__body { color: var(--lp-text); }
.rte h2 {
  font-family: var(--lp-font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  margin: 36px 0 12px;
  color: var(--lp-primary);
}
.rte h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--lp-primary);
}
.rte p  { margin: 0 0 16px; line-height: 1.7; color: var(--lp-text); }
.rte ul { margin: 0 0 16px 20px; }
.rte li { margin-bottom: 8px; line-height: 1.65; color: var(--lp-text); }
.rte a  { color: var(--lp-primary); text-decoration: underline; text-underline-offset: 3px; }
.rte strong { font-weight: 700; }
.rte .legal-updated {
  display: inline-block;
  font-size: .85rem;
  color: var(--lp-muted);
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .legal-page { padding: 32px 24px; }
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { padding: 32px 0 44px; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--lp-border);
  padding-top: 28px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo {
  width: 34px; height: 34px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--lp-secondary-dim);
  border: 1px solid var(--lp-border);
  flex-shrink: 0;
}
.footer__logo img { width: 100%; height: 100%; object-fit: cover; }
.footer__brand strong { color: var(--lp-primary); font-size: .95rem; }
.footer__tagline { font-size: .87rem; color: var(--lp-muted); }
.footer__note { font-size: .86rem; color: var(--lp-muted); max-width: 400px; text-align: right; }
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
  align-items: center;
}
.footer__legal a {
  font-size: .85rem;
  color: var(--lp-muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.footer__legal a:hover {
  color: var(--lp-primary);
  background: var(--lp-secondary-dim);
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--lp-muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.footer__social:hover {
  color: var(--lp-primary);
  background: var(--lp-secondary-dim);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid     { grid-template-columns: 1fr; gap: 40px; }
  .hero           { padding: 72px 0 60px; }
  .icon-list      { grid-template-columns: repeat(3, 1fr); }
  .audience-grid  { grid-template-columns: repeat(2, 1fr); }
  .cta-box__inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-wrap   { grid-template-columns: 1fr; }
  .value-block    { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .value-block__divider { display: none; }
  .trust-inner    { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section        { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  .container      { width: calc(100% - 32px); }

  .header__nav,
  .header__cta    { display: none; }
  .header__hamburger { display: flex; }

  .card-grid     { grid-template-columns: 1fr; }
  .icon-list     { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
  .stats-grid .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--lp-border); }

  .cta-box__inner   { padding: 32px 28px; }
  .contact-content,
  .contact-form     { padding: 28px 22px; }
  .hero-panel__body { padding: 18px; }
  .footer__inner    { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__right    { align-items: flex-start; }
  .footer__note     { text-align: left; }
  .wa-float         { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .icon-list          { grid-template-columns: 1fr 1fr; }
  .audience-grid      { grid-template-columns: 1fr 1fr; }
  .btn-group          { flex-direction: column; }
  .btn-group .btn     { width: 100%; justify-content: center; }
  .section__header    { margin-bottom: 32px; }
}


/* Safe4 polish */
html { scroll-behavior: smooth; }
#como-funciona, #que-revisamos, #faq, #contacto { scroll-margin-top: 96px; }
.section__subhead {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--lp-muted);
  line-height: 1.65;
  font-size: .98rem;
}
.hero__content .lead { max-width: 560px; }
.hero-panel { border-color: rgba(6,46,30,.10); }
.hero-panel__body { gap: 14px; }
.card, .audience-card, .testimonial-card, .faq-item, .legal-page { box-shadow: 0 10px 32px rgba(6,46,30,.06); }
.card:hover, .audience-card:hover, .testimonial-card:hover { transform: translateY(-3px); }
.testimonial-card {
  position: relative;
  min-height: 100%;
}
.testimonial-card__stars { margin-bottom: -4px; }
.testimonial-card__text {
  font-size: .96rem;
  color: #18352c;
}
.testimonial-card__role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card__role::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-secondary);
  display: inline-block;
}
.contact-wrap { border-color: rgba(6,46,30,.10); }
.contact-form .btn { min-height: 52px; }
.contact-form-intro {
  background: rgba(114,209,160,.12);
}
.form-note { margin-bottom: 0; }
.footer__legal { row-gap: 6px; }
.footer__note {
  max-width: 540px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .hero__content .btn-group { width: 100%; }
  .hero__content .btn-group .btn { justify-content: center; }
}
@media (max-width: 768px) {
  #como-funciona, #que-revisamos, #faq, #contacto { scroll-margin-top: 78px; }
  .hero { padding-top: 56px; }
  .hero-panel__top { align-items: flex-start; }
  .section__subhead { font-size: .94rem; }
  .footer__legal a { padding-left: 0; }
}
@media (max-width: 480px) {
  .icon-list, .audience-grid { grid-template-columns: 1fr; }
  .cta-box__inner { padding: 28px 22px; }
}
