/* Página "Espéralo pronto" — Columbus Textil */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* foto de taller desvanecida bajo un velo blanco para que logo y texto dominen */
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(240, 246, 251, 0.76)),
    url('/espera-fondo.jpg') center / cover no-repeat fixed;
  font-family: Georgia, 'Times New Roman', serif;
  text-align: center;
  color: #0c2a41;
}

main { padding: 2rem; }

.logo {
  width: min(360px, 75vw);
  height: auto;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #123f5e;
  margin-bottom: 0.75rem;
}

.mensaje {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #1F7A4D;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
