/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Asegura que el body abarque toda la pantalla y respete el header y footer */
body {
    margin-top: 120px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Contenedor principal de la vista */
.contenedorConstruccion {
  flex: 1; /* Empuja el footer hacia abajo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Imagen centrada */
.contenedorConstruccion .imagen {
  max-width: 500px;
  height: auto;
  margin-bottom: 20px;
}

/* Título */
.contenedorConstruccion h1 {
  font-size: 2rem;
  color: #5a2ea6;
  margin-bottom: 10px;
}

/* Botón (si lo usas en el futuro) */
.boton {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5a2ea6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #7b45d3;
}

/* Media Queries para pantallas pequeñas */
@media screen and (max-width: 480px) {
  .contenedorConstruccion h1 {
    font-size: 1.2rem;
  }

  .contenedorConstruccion {
    padding: 1.5rem 1rem;
  }

  .contenedorConstruccion .imagen {
    max-width: 300px;
  }
}
