/* Verifíquese Cédula Premium — landing estática
   Fuente: Plus Jakarta Sans (auto-hospedada en assets/fonts) */

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/LDIoaomQNQcsA88c7O9yZ4KMCoOg4Ko20yw.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/LDIoaomQNQcsA88c7O9yZ4KMCoOg4Ko40yyygA.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --brand: #0f96d4;
  --brand-deep: #12213d;
  --brand-soft: #e8f4fc;
  --foreground: #1d2436;
  --muted-foreground: #6b7385;
  --card: #ffffff;
  --border: #e5e9f0;
  --secondary: #f3f6fa;
  --page-bg: #f6f8fb;
  --radius: 1.125rem;
  --shadow-card: 0 2px 10px -4px rgba(18, 33, 61, 0.18);
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--page-bg);
  color: var(--foreground);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}

p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.surface-brand {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff;
}

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ---------- Header ---------- */
.site-header { background: linear-gradient(135deg, var(--brand-deep), var(--brand)); color: #fff; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.logo { height: 2.25rem; width: auto; }

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.1rem;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn-lg { font-size: 0.95rem; padding: 0.8rem 1.5rem; }
.btn-sm { font-size: 0.82rem; padding: 0.5rem 1rem; }

.btn-primary { background-color: var(--brand); color: #fff; }
.btn-primary:hover { background-color: #0d85be; }

.btn-outline { background-color: #fff; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background-color: var(--brand-soft); }

.btn-light { background-color: #fff; color: var(--brand-deep); }
.btn-light:hover { background-color: var(--brand-soft); }

/* ---------- Layout ---------- */
.main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section { padding: 2rem; }
.section h2 { text-align: center; font-size: 1.5rem; }
.section .grid { margin-top: 2.5rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-4 { grid-template-columns: 1fr; }
.grid-7 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background-color: var(--brand-soft);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.1;
}

.accent { color: var(--brand); }

.lead {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.lead strong { color: var(--foreground); font-weight: 700; }
.lead strong.accent { color: var(--brand); }

.hero-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(18, 33, 61, 0.18));
}

/* ---------- Cards ---------- */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: rgba(15, 150, 212, 0.1);
  color: var(--brand);
}

.feature {
  border-radius: 0.85rem;
  background-color: var(--secondary);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -4px rgba(18, 33, 61, 0.12);
}
.feature .icon-badge { margin: 0 auto; transition: transform 0.22s ease; }
.feature:hover .icon-badge { transform: scale(1.08); }
.feature h3, .step h3 { margin-top: 1.25rem; font-size: 1rem; }
.feature p, .step p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 0.75rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.sector:hover {
  transform: translateY(-2px);
  background-color: var(--brand-soft);
}
.sector-ico { color: var(--brand); transition: transform 0.2s ease; }
.sector:hover .sector-ico { transform: scale(1.1); }
.sector span { font-size: 0.75rem; font-weight: 700; color: var(--muted-foreground); }

.step {
  padding: 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -4px rgba(18, 33, 61, 0.14);
}
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step .icon-badge { width: 2.75rem; height: 2.75rem; border-radius: 0.85rem; }
.step-num { font-size: 0.875rem; font-weight: 800; color: rgba(15, 150, 212, 0.4); }

/* ---------- CTA ---------- */
.cta { border-radius: 1.25rem; padding: 2.5rem 1.5rem; text-align: center; }
.cta h2 { color: #fff; font-size: 1.5rem; }
.cta p { margin: 0.75rem auto 0; max-width: 34rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.82); }
.cta .btn { margin-top: 1.75rem; }

/* Trust / metrics section */
.trust { border-radius: 1.25rem; padding: 2rem 1.5rem; text-align: center; }
.trust-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }
.trust-metrics { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin: 1.5rem 0 0; }
.trust-metric { display: flex; flex-direction: column; align-items: center; }
.trust-num { font-size: 1.875rem; font-weight: 800; color: #fff; display: inline-flex; align-items: center; gap: 0.35rem; }
.trust-star { color: #f5b50a; }
.trust-label { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 500; color: rgba(255, 255, 255, 0.72); }
.trust-divider { display: none; width: 1px; height: 2.5rem; background: rgba(255, 255, 255, 0.2); }
.trust .btn { margin-top: 1.75rem; }
@media (min-width: 768px) {
  .trust { padding: 2.5rem 3rem; }
  .trust-metrics { flex-direction: row; justify-content: center; gap: 2.5rem; }
  .trust-divider { display: block; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background-color: var(--card); }
.site-footer .container { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-logo img { height: 2rem; width: auto; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
}
.footer-nav a:hover, .footer-social a:hover { color: var(--brand); }

.footer-social { display: flex; align-items: center; gap: 1.25rem; color: var(--muted-foreground); }

.copyright { margin-top: 1.25rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

/* ---------- Modal video ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
}
.modal[hidden] { display: none; }
.modal-inner { position: relative; width: 100%; max-width: 48rem; }
.modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.26); }
.modal video { width: 100%; aspect-ratio: 16 / 9; border-radius: 0.85rem; background: #000; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-7 { grid-template-columns: repeat(4, 1fr); }
  .cta { padding: 2.5rem; }
}

@media (min-width: 768px) {
  .hero { grid-template-columns: 1fr 1fr; padding: 3rem; }
  .hero-img { max-width: 460px; }
  .section { padding: 3rem; }
  .section h2 { font-size: 1.875rem; }
  .cta h2 { font-size: 1.875rem; }
  .footer-row { flex-direction: row; flex-wrap: nowrap; }
  .footer-nav { flex-wrap: nowrap; white-space: nowrap; }
  .footer-logo, .footer-social { flex-shrink: 0; }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-7 { grid-template-columns: repeat(7, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Ajuste para pantallas muy angostas: evita que el header se apiñe */
@media (max-width: 479px) {
  .badge-premium { display: none; }
  .header-inner { gap: 0.5rem; }
  .btn-sm { font-size: 0.75rem; padding: 0.45rem 0.8rem; }
  .logo { height: 1.9rem; }
}

/* ---------- Botón flotante de WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float:active { transform: scale(0.95); }
