:root {
  --hep-bg-top: #efe9f7;
  --hep-bg-bottom: #f9f6fc;
  --hep-card: #ffffff;
  --hep-primary: #6f43cc;
  --hep-primary-dark: #5332a1;
  --hep-text: #2f2348;
  --hep-muted: #6f6690;
  --hep-border: #ddd3ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--hep-text);
  background:
    radial-gradient(circle at 8% 18%, rgba(111, 67, 204, 0.18), transparent 35%),
    radial-gradient(circle at 92% 82%, rgba(83, 50, 161, 0.14), transparent 40%),
    linear-gradient(160deg, var(--hep-bg-top), var(--hep-bg-bottom));
  display: grid;
  place-items: center;
  padding: 24px;
}

.construccion {
  width: min(760px, 100%);
  background: var(--hep-card);
  border: 1px solid var(--hep-border);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(66, 45, 116, 0.16);
  padding: clamp(24px, 4vw, 44px);
  text-align: center;
  animation: intro 650ms ease-out both;
}

.logo-wrap {
  width: 100%;
  margin-bottom: 8px;
}

.logo {
  width: min(340px, 82%);
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(95, 62, 177, 0.22));
}

.badge {
  display: inline-block;
  margin: 14px 0 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(111, 67, 204, 0.12);
  color: var(--hep-primary-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.15;
}

p {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--hep-muted);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.6;
}

.estado {
  margin: 24px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hep-primary-dark);
  font-weight: 600;
}

.punto {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hep-primary);
  box-shadow: 0 0 0 0 rgba(111, 67, 204, 0.65);
  animation: pulso 1.8s infinite;
}

@keyframes intro {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulso {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 67, 204, 0.62);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(111, 67, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 67, 204, 0);
  }
}
