/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* FONDO */
.links-page {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #f4f6fb 0%,
    #eef2f8 40%,
    #e6ebf4 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTENEDOR */
.links-container {
  width: 100%;
  max-width: 420px;
  padding: 32px 20px;
  text-align: center;
}

/* LOGO */
.logo {
  max-width: 260px;
  margin-bottom: 28px;
}

/* BOTONES BASE */
.btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* VARIANTES */
.btn-primary {
  background: #2f6bff;
  color: #fff;
}

.btn-secondary {
  background: #e4ebff;
  color: #1c3f8a;
}

.btn-dark {
  background: #2b2f3a;
  color: #fff;
}

.btn-link {
  background: #f0f2f6;
  color: #1c3f8a;
  font-weight: 500;
}

.btn-whatsapp {
  background: #22b14c;
  color: #fff;
  margin-top: 18px;
}

/* HOVER */
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* SECCIONES */
.section-title {
  margin: 22px 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

/* FOOTER */
footer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: #6b7280;
}
