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

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: url('fondo.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* El logo sin rectángulo de fondo */
.logo-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  max-width: 600px;
  width: 80%;
  height: auto;
}

.info {
  margin-top: 45px;
  text-align: center;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  font-weight: 400;
}

.info hr {
  width: 120px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 25px auto;
}

.footer {
  font-weight: 300;
  font-size: 20px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .logo {
    max-width: 85%;
  }

  .info {
    font-size: 14px;
  }
}
