:root {
  color-scheme: light;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #303236;
  background: #edf0f2;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
}

.construction-page {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.construction-page::before {
  position: absolute;
  z-index: -2;
  inset: -0.75rem;
  content: "";
  background: url("IMAGES/FONDO.png") center / cover no-repeat;
  filter: blur(6px) brightness(0.82);
  transform: scale(1.03);
}

.construction-page::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(12, 18, 26, 0.12);
}

.construction-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 760px);
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  padding: clamp(1.25rem, 4vw, 2.8rem);
  text-align: center;
}

.logo-frame {
  position: relative;
  display: block;
  width: min(100%, 620px);
  aspect-ratio: 2.5 / 1;
  overflow: hidden;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 115%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0.65rem 1.2rem rgba(0, 0, 0, 0.48));
}

.message {
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #f08ac6;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.subtitle {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .construction-page {
    padding: 1rem;
  }

  .construction-content {
    padding: 1.25rem 1rem 1.75rem;
  }

  .logo-frame {
    width: 100%;
  }
}
