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

/* ---- Fondo principal ---- */
body {
  background: url("../img/bg-desktop-fi.png") center center / cover no-repeat;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #151835;
}

/* ---- Contenedor general ---- */
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 4vh 2vw;
}

/* ---- Secciones ---- */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section.middle {
width: 100%;
display: flex;
align-items: center; 
justify-content: center;
margin: 4vh auto

}

.section.middle a {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1vh auto
}


/* ---- Imágenes ---- */
.banner-desktop {
  display: block;
  height: 65vh;
}

.banner-mobile {
  display: none;
}

.boton-desktop {
  display: block;
  height: 6vh;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.boton-desktop2 {
  display: block;
  height: 6vh;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.boton-desktop:hover {
  -webkit-transform:scale(0.9);
  transform:scale(0.9);
  transition: 0.3s;
  outline-color: rgba(49, 138, 172, 0);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;
}

.boton-desktop2:hover {
  -webkit-transform:scale(0.9);
  transform:scale(0.9);
  transition: 0.3s;
  outline-color: rgba(49, 138, 172, 0);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;
}

.boton-mobile:hover {
  -webkit-transform:scale(0.9);
  transform:scale(0.9);
  transition: 0.3s;
  outline-color: rgba(49, 138, 172, 0);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;
}

.footer-desktop {
  display: block;
  height: 5vh;
  text-align: center;
}


/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {

  body {
    background: url("../img/bg-mobile-fi.png") center center / cover no-repeat;

  }

  .section.middle a {
    margin: 2vh auto
  }

  .container {
    padding: 6vh 4vw;
  }

  .section.bottom {
    margin-bottom: 1vh;
  }

  .banner-desktop {
    display: none;

  }
  
  .banner-mobile {
    display: block;
    width: 80%;
    height: auto;
  }

  .boton-desktop {
    display: block;
  }

  .boton-desktop2 {
    display: block;
  }

  .footer-desktop {
    display: block;
  }

}

