.fade-in {
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav-link:hover {
  color: #dc3545 !important; /* Cambia a un rojo destacado al pasar el cursor */
  text-decoration: underline; /* Subraya el texto */
  transition: all 0.3s ease-in-out; /* Suaviza la transición */
}
.btn-whatsapp {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Efecto hover */
.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px 20px;
  text-align: center;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cookie-banner button {
  margin-left: 10px;
}
.espacio{
    display: block !important;
}
.din{
    bottom: 40px !important;
}
.dom{
    display: none;
}

@media (max-width: 400px) {
 .btn-whatsapp{
     bottom: 110px;
 }
}

