/* Reset general */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Bebas Neue', sans-serif;
}

/* Fondo principal */
body {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../img/1-23bfbea7.jpg');
  background-size: cover;
  background-position: center;
}

/* Capa blanca semitransparente */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Logo */
.overlay img {
  width: 40%;
  max-width: 600px;
  height: auto;
  margin-bottom: 30px;
}

/* Texto */
.mensaje h1 {
  font-size: 3rem;
  margin: 0 0 10px;
  color: #e25437;
}

.mensaje p {
  font-size: 1.2rem;
  color: #555;
  margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 768px) {
  .overlay img {
    width: 60%;
    max-width: 250px;
  }

  .mensaje h1 {
    font-size: 2.2rem;
  }

  .mensaje p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .overlay img {
    width: 70%;
    max-width: 200px;
  }

  .mensaje h1 {
    font-size: 1.8rem;
  }

  .mensaje p {
    font-size: 0.9rem;
  }
}
