/* ── TOKENS ─────────────────────────── */
:root {
  --navy:      #0F2D5E;
  --navy-d:    #081C3A;
  --navy-l:    #E6F1FB;
  --blue:      #185FA5;
  --blue-l:    #B5D4F4;
  --red:       #FF3A4A;
  --red-l:     #FFE8EA;
  --amber:     #BA7517;
  --amber-l:   #FAEEDA;
  --teal:      #1D9E75;
  --teal-l:    #E1F5EE;
  --dark:      #1A1A1A;
  --gray:      #F4F4F4;
  --gray-m:    #E0E0E0;
  --gray-d:    #888888;
  --white:     #FFFFFF;
  --radius:    10px;
  --radius-l:  16px;
  --shadow:    0 2px 16px rgba(15,45,94,0.10);
  --shadow-h:  0 6px 28px rgba(15,45,94,0.16);
}

/* ── RESET ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', Arial, sans-serif; background: var(--white); color: var(--dark); font-size: 15px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILS ──────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--gray); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #0A84FF; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: #0A84FF; flex-shrink: 0; }
.section-title { font-size: 32px; font-weight: 800; line-height: 1.2; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.02em; }
.section-sub { font-size: 16px; color: var(--gray-d); line-height: 1.7; max-width: 620px; }
.tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase; }
.tag-navy { background: var(--navy-l); color: var(--navy); }
.tag-red { background: var(--red-l); color: var(--red); }
.tag-amber { background: var(--amber-l); color: var(--amber); }
.tag-teal { background: var(--teal-l); color: var(--teal); }

/* ── NAV ────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-m);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 18px; font-weight: 800; color: #fff;
}
.nav-name { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.nav-name span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray-d); transition: color 0.15s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  font-size: 13px !important; font-weight: 700 !important;
  padding: 9px 20px; border-radius: 100px;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--blue) !important; }

/* ── HERO ───────────────────────────── */
.hero {
  background: var(--navy-d);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(24,95,165,0.18);
}
.hero::after {
  content: '';
  position: absolute; bottom: 40px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(24,95,165,0.10);
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: end; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-l); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue-l); }
.hero h1 { font-size: 46px; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 em { color: var(--blue-l); font-style: normal; display: block; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-deadline {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 12px 24px; border-radius: 100px;
  margin-bottom: 48px;
}
.hero-deadline .pulse {
  width: 10px; height: 10px; border-radius: 50%; background: #fff;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-stat-bar {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px; margin-top: 0;
}
.hero-stat { flex: 1; padding: 0 28px 32px 0; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.hero-stat-num { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.hero-stat-num span { color: var(--blue-l); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }

.hero-card {
  background: var(--white); border-radius: var(--radius-l) var(--radius-l) 0 0;
  padding: 28px; box-shadow: var(--shadow-h);
  align-self: end;
}
.hero-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-d); margin-bottom: 14px; }
.hero-card-date { font-size: 22px; font-weight: 800; color: var(--red); letter-spacing: -0.02em; margin-bottom: 6px; }
.hero-card-sub { font-size: 13px; color: var(--dark); font-weight: 600; margin-bottom: 16px; }
.hero-card p { font-size: 13px; color: var(--gray-d); line-height: 1.6; margin-bottom: 20px; }
.hero-card-items { display: flex; flex-direction: column; gap: 8px; }
.hero-card-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--dark); }
.hero-card-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── LEY SECTION ────────────────────── */
.ley-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.ley-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ley-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; }
.ley-ok { color: var(--teal); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.ley-no { color: var(--red); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.fine-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.fine-card { background: var(--red-l); border: 1px solid #FFADB3; border-radius: var(--radius); padding: 16px; text-align: center; }
.fine-num { font-size: 26px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.fine-label { font-size: 11px; color: #A32D2D; line-height: 1.4; }
.risk-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.risk-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--dark); }
.risk-icon { color: var(--amber); font-weight: 700; flex-shrink: 0; }

/* ── BIOMETRÍA SECTION ──────────────── */
.bio-hero {
  background: var(--navy);
  border-radius: var(--radius-l);
  padding: 48px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bio-hero h2 { font-size: 28px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 14px; }
.bio-hero h2 em { color: var(--blue-l); font-style: normal; }
.bio-hero p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.bio-reasons { display: flex; flex-direction: column; gap: 14px; }
.bio-reason { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 16px 18px; border-left: 3px solid var(--blue-l); }
.bio-reason-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bio-reason-body { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.55; }
.tech-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tech-card {
  background: var(--white); border: 1px solid var(--gray-m);
  border-radius: var(--radius-l); padding: 20px 14px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tech-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.tech-icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-l); margin: 0 auto 12px auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--navy); font-weight: 700;
}
.tech-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tech-desc { font-size: 11px; color: var(--gray-d); line-height: 1.45; }

/* ── CHECADORES SECTION ─────────────── */
.checadores-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.checador-card {
  background: var(--white); border: 1px solid var(--gray-m);
  border-radius: var(--radius-l); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.checador-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
.checador-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-l) 0%, var(--gray) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.checador-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.checador-img-icon { font-size: 32px; color: var(--blue); opacity: 0.5; }
.checador-img-label { font-size: 10px; color: var(--gray-d); font-weight: 500; }
.checador-badge { position: absolute; top: 10px; right: 10px; }
.checador-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.checador-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.checador-specs { list-style: none; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.checador-specs li { font-size: 11px; color: var(--gray-d); display: flex; align-items: flex-start; gap: 6px; line-height: 1.4; }
.checador-specs li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.checador-tech { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 10px; }
.checador-tech span { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 100px; background: var(--navy-l); color: var(--navy); }

/* ── EXPERTISE SECTION ──────────────── */
.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.expertise-card { background: var(--white); border: 1px solid var(--gray-m); border-radius: var(--radius-l); padding: 28px; }
.expertise-num { font-size: 36px; font-weight: 800; color: var(--navy-l); letter-spacing: -0.03em; margin-bottom: 4px; line-height: 1; }
.expertise-num span { color: var(--navy); }
.expertise-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.expertise-body { font-size: 13px; color: var(--gray-d); line-height: 1.65; }

/* ── OPCIONES SECTION ───────────────── */
.opciones-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.opcion-card { border-radius: var(--radius-l); padding: 24px; border: 1px solid transparent; }
.opcion-cloud { background: var(--teal-l); border-color: #9FE1CB; }
.opcion-local { background: var(--navy-l); border-color: #0A84FF; }
.opcion-enterprise { background: #EEEDFE; border-color: #AFA9EC; }
.opcion-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.opcion-cloud .opcion-badge { background: #9FE1CB; color: #085041; }
.opcion-local .opcion-badge { background: #0A84FF; color: #ffffff; }
.opcion-enterprise .opcion-badge { background: #CECBF6; color: #3C3489; }
.opcion-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.opcion-body { font-size: 13px; color: var(--gray-d); line-height: 1.6; margin-bottom: 14px; }
.opcion-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.opcion-list li { font-size: 12px; color: var(--dark); display: flex; align-items: flex-start; gap: 7px; }
.opcion-list li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
.opcion-cloud .opcion-list li::before { color: var(--teal); }
.opcion-local .opcion-list li::before { color: var(--blue); }
.opcion-enterprise .opcion-list li::before { color: #534AB7; }

/* ── FORMULARIO SECTION ─────────────── */
.form-section { background: var(--navy-d); padding: 80px 24px; }
.form-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center; }
.form-left .eyebrow { color: var(--blue-l); }
.form-left .eyebrow::before { background: var(--blue-l); }
.form-title { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.form-title em { color: var(--blue-l); font-style: normal; }
.form-sub { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
.form-promise { display: flex; flex-direction: column; gap: 12px; }
.form-promise-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.form-promise-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.form-box { background: var(--white); border-radius: var(--radius-l); padding: 36px; box-shadow: var(--shadow-h); }
.form-box-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-box-sub { font-size: 13px; color: var(--gray-d); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.form-group input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gray-m); border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--dark);
  outline: none; transition: border-color 0.15s;
  background: var(--white);
}
.form-group input:focus { border-color: var(--blue); }
.form-group input::placeholder { color: #BBBBBB; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--navy); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700;
  border: none; border-radius: 100px; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--blue); transform: translateY(-1px); }
.form-privacy { font-size: 11px; color: var(--gray-d); text-align: center; margin-top: 10px; line-height: 1.5; }
.wa-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 10px 14px; background: #E8F8EE; border-radius: var(--radius); font-size: 12px; color: #1A6835; font-weight: 500; }
.wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; flex-shrink: 0; }

/* ── COMPLEMENTARIOS ────────────────── */
.comp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.comp-card { background: var(--white); border: 1px solid var(--gray-m); border-radius: var(--radius-l); overflow: hidden; }
.comp-img {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray) 0%, var(--gray-m) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.comp-img-icon { font-size: 36px; color: var(--gray-d); opacity: 0.5; }
.comp-img-text { font-size: 10px; color: var(--gray-d); font-weight: 500; }
.comp-body { padding: 14px; }
.comp-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.comp-desc { font-size: 11px; color: var(--gray-d); line-height: 1.5; }

/* ── FOOTER ─────────────────────────── */
footer { background: var(--navy-d); padding: 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.footer-logo { width: 32px; height: 32px; border-radius: 8px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; }
.footer-name { font-size: 15px; font-weight: 700; color: #fff; }
.footer-name span { color: var(--blue-l); font-weight: 400; font-size: 12px; display: block; }
.footer-social { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s; text-decoration: none; }
.footer-social-link:hover { background: var(--blue); color: #fff; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.4); text-align: right; line-height: 1.6; }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { border-radius: var(--radius-l); }
  .ley-grid { grid-template-columns: 1fr; }
  .bio-hero { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .checadores-grid { grid-template-columns: repeat(2,1fr); }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .opciones-grid { grid-template-columns: 1fr; }
  .form-inner { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: repeat(2,1fr); }
  .section-title { font-size: 26px; }
  .hero h1 { font-size: 34px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { text-align: center; }
}
@media (max-width: 560px) {
  .tech-grid, .checadores-grid, .comp-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
}

/* ── TECH BLUE ACCENT ── */
:root { --tech: #B5D4F4; }
.eyebrow { color: #0A84FF; }
.eyebrow::before { background: #0A84FF; }

/* ── SECTION IMAGE BANNERS ── */
.sec-img-banner {
  width: 100%; border-radius: var(--radius-l); overflow: hidden;
  margin-bottom: 40px; position: relative; height: 240px;
}
.sec-img-banner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.sec-img-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,45,94,0.82) 0%, rgba(24,95,165,0.55) 100%);
  display: flex; align-items: center; padding: 32px 40px;
}
.sec-img-banner-overlay p {
  font-size: 20px; font-weight: 700; color: #fff;
  line-height: 1.35; max-width: 520px;
}
.sec-img-banner-overlay p em { color: #B5D4F4; font-style: normal; }

/* ── TECH CARD WITH IMAGE ── */
.tech-card-img {
  width: 100%; height: 120px; object-fit: cover;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  display: block;
}
.tech-card { overflow: hidden; padding: 0; }
.tech-card .tech-icon-circle { margin: 14px auto 10px auto; }
.tech-card .tech-name { padding: 0 14px; }
.tech-card .tech-desc { padding: 0 14px 14px; }

/* ── EXPERTISE IMAGE STRIP ── */
.exp-img-strip {
  width: 100%; border-radius: var(--radius-l); overflow: hidden;
  height: 200px; margin-bottom: 36px; position: relative;
}
.exp-img-strip img { width: 100%; height: 100%; object-fit: cover; }
.exp-img-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,28,58,0.9) 0%, rgba(15,45,94,0.6) 100%);
  display: flex; align-items: center; padding: 0 44px;
}
.exp-img-strip-overlay p {
  font-size: 20px; font-weight: 700; color: #fff; line-height: 1.35; max-width: 500px;
}
.exp-img-strip-overlay p em { color: #B5D4F4; font-style: normal; }

/* ── OPCION IMAGE ── */
.opcion-img {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  display: block; margin-bottom: -8px;
}
.opcion-card { overflow: hidden; padding-top: 0; }
.opcion-card .opcion-badge { margin-top: 16px; display: inline-block; }