/* Página en construcción — Dra. Gabriela E. Pico Loor */

:root {
  --blue: #293f99;
  --blue-dark: #12235e;
  --blue-soft: #477fbd;
  --cyan: #15a7df;
  --black: #101010;
  --white: #ffffff;
  --gray: #667085;
  --light: #f4f8ff;
  --border: rgba(41, 63, 153, 0.14);
  --shadow: 0 28px 90px rgba(18, 35, 94, 0.14);
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background:
    radial-gradient(circle at 20% 12%, rgba(21, 167, 223, 0.13), transparent 30rem),
    radial-gradient(circle at 82% 20%, rgba(41, 63, 153, 0.16), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, #f5f8ff 55%, #edf6ff 100%);
}

.construction-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 34px 18px;
  overflow: hidden;
}

.hero-card {
  position: relative;
  width: min(100%, 1060px);
  min-height: 680px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  text-align: center;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--border);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(71, 127, 189, 0.18);
  border-radius: 32px;
  pointer-events: none;
  z-index: -1;
}

.decor {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  z-index: -2;
}

.decor-one {
  width: 360px;
  height: 360px;
  right: -160px;
  top: -140px;
  background: rgba(41, 63, 153, 0.16);
}

.decor-two {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -120px;
  background: rgba(21, 167, 223, 0.13);
}

.decor-line {
  position: absolute;
  width: min(78vw, 760px);
  height: min(78vw, 760px);
  border: 1px solid rgba(41, 63, 153, 0.12);
  border-radius: 50%;
  z-index: -2;
  animation: float 7s ease-in-out infinite;
}

.logo-wrap {
  width: min(100%, 680px);
  padding: 24px clamp(18px, 4vw, 42px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(41, 63, 153, 0.12);
  box-shadow: 0 18px 50px rgba(18, 35, 94, 0.08);
  backdrop-filter: blur(18px);
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.content {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cyan);
}

h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--blue-dark);
}

p {
  margin: 22px auto 0;
  max-width: 680px;
  color: var(--gray);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}

p strong {
  color: var(--blue-dark);
}

.status-box {
  width: min(100%, 680px);
  padding: 20px 22px;
  border: 1px solid rgba(41, 63, 153, 0.12);
  border-radius: 24px;
  background: rgba(244, 248, 255, 0.9);
}

.status-box > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 800;
}

.status-box p {
  margin-top: 8px;
  font-size: 0.96rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(21, 167, 223, 0.14);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 18px 38px rgba(41, 63, 153, 0.2);
}

.btn-secondary {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(41, 63, 153, 0.16);
}

footer {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

footer small {
  color: var(--gray);
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@media (max-width: 720px) {
  .hero-card {
    min-height: auto;
    border-radius: 30px;
  }

  .hero-card::before {
    inset: 10px;
    border-radius: 24px;
  }

  .logo-wrap {
    padding: 18px;
    border-radius: 22px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 20px;
  }

  .actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
