/* File: assets/css/adicional.css */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);              /* color del texto */
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}
/* whatsapp */
 .whatsapp-float {
      position: fixed;
      bottom:20%;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      font-size: 28px;
      text-align: center;
      line-height: 60px; /* igual al alto para centrar el ícono */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 2000;
      transition: transform 0.3s;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

/* flotante */
.flotante {
      position: absolute;
      bottom: 15%;
      left: 100px;
      width: 100px;
      height: 100px;
      background-color: transparent;
      /* color: white; */
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      font-size: 20px;
      /* box-shadow: 0 5px 15px rgba(0,0,0,0.3); */
      animation: flotar 3s ease-in-out infinite;
      margin: 100px auto;
    }
.flotante >img {
      width: 200px;
      height: 100px;
    }

.flotante:hover {
  background-color: #45a049; /* Cambia el color al pasar el mouse */
}


@media (max-width: 768px) {
  .flotante {
  position: absolute;
  bottom: 5%;
  left: 50px;
  }
}

/* Animación de flotación */
@keyframes flotar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.logo-image{
  width: 100%;
  height: 100px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
}

/* ANIMATE ERROR AND SUCCESS */
/* Animación tipo shake para warnings */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-6px); }
  100% { transform: translateX(0); }
}

.error-message .animate-shake {
  animation: shake 0.4s ease;
}

/* Fade-in & fade-out suave */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.fade-out {
  animation: fadeOut 0.6s forwards;
}

@keyframes fadeOut {
  to { opacity: 0; }
}

.requisitos{
  margin:auto;
}
.requisitos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.requisitos ul li{
  padding-top: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links{
  margin-bottom: 30px;
}

.footer h4{
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color:#ffffff;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding-top: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links a {
  color: #ffffff;
}

.footer .footer-about .logo span{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: #ffffff
}

#mapa {
      height: 500px; /* Ajusta el tamaño según lo necesites */
      width: 100%;
  }