/* PRELOADER */
.preloader1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

.cssload-container1 img {
  width: 120px;
  /* Ajusta tamaño del logo */
  animation: spin 2s linear infinite;
}

/* Animación de rotación */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Estado oculto */
.preloader1.hidden {
  opacity: 0;
  visibility: hidden;
}

/*.btn-mision {
  width: 270px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: white !important;
  /* texto blanco fijo */
  /*text-decoration: none !important;
  border-radius: 10px;
  background-image: linear-gradient(270deg, #9fcd90, #a9c96a, #469bbf, #9fcd90);
  background-size: 300% 100%;
  animation: gradientMove 6s linear infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}*/

.btn-mision {
  width: 270px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: white !important;
  /* texto blanco fijo */
  text-decoration: none !important;
  border-radius: 10px;
  background-color: #a9c96a;
  background-size: 300% 100%;
  animation: gradientMove 6s linear infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*.btn-vision{
  width: 270px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: white !important;
  /* texto blanco fijo */
  /*text-decoration: none !important;
  border-radius: 10px;
  background-image: linear-gradient(270deg, #9fcd90, #a9c96a, #ff9d00, #9fcd90);
  background-size: 300% 100%;
  animation: gradientMove 6s linear infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}*/
.btn-vision{
  width: 270px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: white !important;
  /* texto blanco fijo */
  text-decoration: none !important;
  border-radius: 10px;
  background-color: #469bbf;
  background-size: 300% 100%;
  animation: gradientMove 6s linear infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*.btn-politicas{
  text-align: center;
  line-height: 1.2;
  width: 270px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: white !important;
  /* texto blanco fijo */
  /*text-decoration: none !important;
  border-radius: 10px;
  background-image: linear-gradient(270deg, #469bbf, #a9c96a, #9fcd90, #9fcd90);
  background-size: 300% 100%;
  animation: gradientMove 6s linear infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}*/

.btn-politicas{
  text-align: center;
  line-height: 1.2;
  width: 270px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  font-weight: bold;
  color: white !important;
  /* texto blanco fijo */
  text-decoration: none !important;
  border-radius: 10px;
  background-color: rgb(247, 151, 7);
  background-size: 300% 100%;
  animation: gradientMove 6s linear infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
.img-sombra {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  
}