:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #5f6b7a;
  --primary: #0b7bff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 80px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --glass: rgba(255, 255, 255, 0.75);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, #e8f0ff 0, transparent 35%),
    radial-gradient(circle at 80% 0%, #eef2ff 0, transparent 32%), var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

i.fa {
  width: 20px;
  display: inline-block;
  color: var(--muted);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  position: relative;
}

.top-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  justify-content: center;
}

.logo-netkey-img {
  max-width: 350px;
  height: auto;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.pill.primary {
  background: linear-gradient(120deg, #0b7bff, #3fa9ff);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 123, 255, 0.35);
}

.pill.primary i.fa {
  color: #ffffff;
  font-size: 1.25rem;
}

.pill-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.pill.primary.ml-pill {
  white-space: nowrap;
  background: #ffe600;
  color: #111111;
  box-shadow: 0 10px 24px rgba(255, 230, 0, 0.35);
}

.pill.primary.ml-pill:hover {
  background: #ffe600;
}

.pill.primary.ml-pill .pill-icon {
  border-radius: 4px;
}

.pill.primary.whatsapp-pill {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.pill.primary.whatsapp-pill:hover {
  background: #25d366;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /* align-items: center; */
  gap: 32px;
  overflow: hidden;
  position: relative;
}

.hero-copy h1 {
  /* margin: 10px 0 12px; */
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-copy .lede {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #5b6472;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* margin-top: 30px; */
}
@media (max-width: 549px) {
  .cta-row {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn.primary {
  background: linear-gradient(120deg, #0b7bff, #3fa9ff);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 123, 255, 0.3);
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../img/envelope.svg") center / contain no-repeat;
  mask: url("../img/envelope.svg") center / contain no-repeat;
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.04);
  border-color: var(--border);
  color: var(--ink);
}

.btn:hover,
.pill:hover {
  transform: translateY(-1px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.glass {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  /* border-radius: 20px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12); */
}

.hero-img {
  width: 100%;
  display: block;
  /* border-radius: 16px; */
  max-width: 350px;
  align-self: center;
}

.glass-meta {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
  gap: 12px;
  /* margin-top: 14px; */
}

.meta-title {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.partner-link {
  display: inline-flex;
  align-items: center;
}

.logo-nt {
  max-width: 160px;
  height: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

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

.info-card h3 {
  margin: 8px 0 10px;
  font-size: 1.2rem;
}

.body {
  margin: 4px 0;
  color: var(--muted);
}

.whatsapp {
  color: #25d366;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner h3 {
  margin: 6px 0;
  font-size: 1.3rem;
}

.mapa {
  padding: 0;
  overflow: hidden;
}

.mapa-head {
  padding: 22px 22px 0;
}

.mapa h3 {
  margin: 6px 0 12px;
}

.map-frame {
  width: 100%;
  height: 360px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.creditos {
  padding: 16px 0 6px;
  border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
  }
  .logo-netkey-img {
    max-width: 300px;
  }

  .hero {
    padding: 22px;
  }

  .glass {
    max-width: 100%;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
