body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Lato', sans-serif;
}


.hero {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  background-image: url('../images/fondo.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



/* Escala el iframe para cubrir (tipo cover) */


/* Capa opaca (oscurece para que el contenido destaque) */


/* Contenido y footer por encima */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.links {
  margin-top: 20px;
}

.link {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 10px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  transition: background-color 0.3s;
}

.link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9rem;
  text-shadow: 1px 1px 3px black;
  z-index: 2;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Mejor ajuste en móviles */
@media (max-width: 768px) {
  

  .logo {
    width: 220px;
    height: 220px;
  }

  .link {
    font-size: 1rem;
    padding: 9px 14px;
  }
}
