

.fondo {
 background-image: url("../links/BG.jpg");
 background-color: #cccccc;
 width: 100%;
 height: auto;
}

.footer-space{
  padding: 50px;
}

.logo-home{
    padding-top: 110px;
    text-align: center;
}

.logo-home img{
    width: 20%;
}


.titulo{
    padding-top: 60px;
    text-align: center;
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 60px;
    font-weight: 900;
    font-style: normal;
}

.cuerpotexto{
    padding-top: 0px;
    padding-left: 50px;
    padding-right: 50px;
}

.cuerpotexto p{

    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 24px;
    text-align: center;
    font-weight: 300;
    font-style: normal;
}


.caja-boton1{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.boton1 {
  background-color: #fff;
  border: none;
  color: #f8bc10;
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 35px;
  padding: 5px 40px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition:.5s
  
  }





.boton1:hover {
  background-color: #f8bc10;
  border: none;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 40px;
  padding: 5px 40px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}



.fondo-hoja2 {
 background-image: url("links/BG2.jpg");
 background-color: #cccccc;
 width: 100%;
 height: auto;
}



.container{
    
    padding-top: 80px;
}

.botonBE{
    text-align: center;
}

.botonBE img{
    width: 400px;
}

.botonBE:hover img{
    opacity: .5;
}

.botonSE{
    text-align: center;
}

.botonSE:hover{
   /*  transform: scale(1.2); /* 20% más grande */
    transition: 1s;
}

.botonSE:hover img{
    content: url(links/Btn-SE-hover.png);
}

.botonSE img{
    width: 400px;
}




.subbotones{
    
    text-align: center;
}

.subbotones a {
  border: 2px solid #a2c617;
  background-color: #fff;
  color: #a2c617;
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 22px;
  padding: 8px 17px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition:.5s
}

.subbotones:hover a {
  border: 2px solid #a2c617;
  background-color: #a2c617;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 25px;
  padding: 8px 17px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}







.boton-se-prueba img{
    width: 100%;
}

.boton-se-prueba:hover img{
    transition: 1s;
    opacity: 0;
    width: 100%;
}

.boton-se-prueba:hover{
    background-image: url(links/Btn-SE-hover.png);
    background-size: 96%;
    background-position: center;
    background-repeat: no-repeat;
    
}


/* !!!!!!!!!!!!!!!!!!!!!!ANIMACIONES !!!!!!!!!!!!!!!!!!!!!!*/
/* Animación inicial */
@keyframes entrada-suave {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Aplica la animación */
.animado {
  opacity: 0;
  animation: entrada-suave 0.8s ease forwards;
}

/* Retrasos opcionales */
.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}
