@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Newsreader:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --bg: #000;
  --surface: rgba(31, 31, 31, 0.8);
  --text: #e2e2e2;
  --fuchsia: #cf0688;
  --fuchsia-soft: #ffafd2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.construction-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  isolation: isolate;
}

.bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../landing page/imagenes/FONDO CLARO OFICINA.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.construction-page::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), #000 80%);
}

.card {
  width: min(760px, 100%);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(207, 6, 136, 0.6);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--fuchsia);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  font-weight: 300;
  line-height: 1.06;
}

.lead {
  margin: 1rem auto 0;
  max-width: 56ch;
  color: rgba(226, 226, 226, 0.86);
  line-height: 1.7;
}

.btn-primary {
  margin-top: 2rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--fuchsia), #8b005a);
  color: #fff;
  padding: 0.95rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.status-message {
  margin: 1.1rem 0 0;
  color: var(--fuchsia-soft);
}

.hidden {
  display: none;
}
