@media (min-width: 768px) and (max-width: 1023px) {
  .desktop-hide {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
 .desktop-hide {
    display: none;
  }
}

@media (min-width: 1440px) {
   .desktop-hide {
    display: none;
  }
}
    /*Estilos generales del boton whatsapp*/
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
       
.sticky-btn-vertical {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  background-color: #ffffff;
  color: #000000;
  padding: 12px 8px;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.sticky-btn-vertical:hover {
  background-color: #198754;
  color: white;
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 576px) {
  .sticky-btn-vertical {
    font-size: 14px;
    padding: 10px 6px;
  }
}








.bg-greenc{
  background-color:#133328;
}


