.elementor-14541 .elementor-element.elementor-element-f2dd943{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a8bbe20 */body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: #f6f7fb;
}

.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  text-align: center; /* 🔑 centra texto y botones */
}

.intro {
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.btn {
  width: 100%;               /* 🔑 mismos tamaños */
  height: 52px;              /* 🔑 misma altura */
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #111827;
  color: #ffffff;
  border: none;
}

.btn-secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.note {
  font-size: 13px;
  color: #666;
}

/* Responsive */
@media (max-width: 520px) {
  .buttons {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */