body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
}

header img { max-height: 32px; }

/* Base */
.tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c757d;
}

.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li { margin-bottom: 0.55rem; }

.section-white { background-color: #ffffff; padding: 5rem 0; }
.section-gray  { background-color: #f7f7f7; padding: 5rem 0; }
.section-yellow{ background-color: #feeeb8; padding: 5rem 0; }

/* HERO */
.hero-fullscreen {
  min-height: 92vh; /* deja ver un pedacito de la siguiente sección */
  padding-bottom: 5vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-fullscreen .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hero-fullscreen .tag {
  color: rgba(255,255,255,0.88);
}

.hero-lead {
  color: rgba(255,255,255,0.92);
  max-width: 44ch;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0.98;
}
.trust-item {
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}

/* CTAs */
.cta-btn {
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
}

.cta-btn-outline {
  font-size: 1.05rem;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
}

/* CTA principal (más llamativo) */
.btn-primary-cta {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border: none;
  color: #ffffff;
  font-size: 1.15rem;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(34,197,94,0.35);
  color: #fff;
}

/* CTA secundario */
.btn-secondary-cta {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.92);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-secondary-cta:hover {
  background-color: rgba(0,0,0,0.35);
  color: #fff;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  background: rgba(0,0,0,0.20);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.scroll-cue:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(0,0,0,0.35);
}

.scroll-cue::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.85);
  transform: rotate(45deg);
  margin-top: -2px;
  animation: scrollBounce 1.4s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.9; }
  50%      { transform: rotate(45deg) translate(0,6px); opacity: 0.7; }
}

/* Card Diagnóstico (más persuasivo/premium) */
.soft-card {
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.badge-soft {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(34,197,94,0.12);
  color: #166534;
  border: 1px solid rgba(34,197,94,0.22);
}

/* Nota */
.note {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.20);
  padding: 12px 14px;
  border-radius: 12px;
}

/* Mini checklist (sin dobles puntos) */
.mini-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #14532d;
  font-weight: 700;
}

.mini-list li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
}

.mini-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 900;
}

/* Sticky WhatsApp */
.sticky-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.sticky-wa:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* Footer */
footer {
  background:#111;
  color:#ccc;
  padding:3rem 0;
}
footer a { color:#ccc; text-decoration:none; }
footer a:hover { text-decoration:underline; }

/* Responsive */
@media (max-width: 768px) {
  .hero-fullscreen {
    min-height: 88vh;
    background-position: center right;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-fullscreen h1 { font-size: 2rem; }
  .hero-fullscreen p  { font-size: 1rem; }

  .scroll-cue { bottom: 12px; width: 40px; height: 40px; }

  .sticky-wa {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
}

/* ==== Extras para Soporte en Línea ==== */
.plan-card { box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.pill {
  background: rgba(15,118,110,0.12);
  color: #0f766e;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,118,110,0.25);
}

.price { display:flex; align-items:baseline; gap:10px; }
.price .display-6 { line-height: 1; }

.hero-fullscreen { min-height: 100vh; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.hero-fullscreen .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.25) 100%);
}

/* Botones (si no los tienes ya) */
.btn-primary-cta {
  background-color: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.btn-primary-cta:hover {
  background-color: #115e59;
  border-color: #115e59;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15,118,110,0.25);
}

.btn-secondary-cta {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-secondary-cta:hover { background-color: #111; color: #fff; }

/* Secciones */
.section-white { background-color: #ffffff; padding: 5rem 0; }
.section-gray { background-color: #f7f7f7; padding: 5rem 0; }
.section-yellow { background-color: #feeeb8; padding: 5rem 0; }

/* Checklist */
.checklist { list-style: none; padding-left: 0; margin-bottom: 0; }
.checklist li { margin-bottom: 0.75rem; }

/* Tag */
.tag { font-size: 0.75rem; letter-spacing: 0.08em; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.section-white .tag, .section-gray .tag, .section-yellow .tag { color: #6c757d; }

/* Responsive */
@media (max-width: 768px) {
  .hero-fullscreen h1 { font-size: 2rem; }
  .hero-fullscreen p { font-size: 1rem; }
}
