/** botones flotantes **/

.btn-flotante-container {
  position: fixed;
  z-index: 999;
  bottom : 0px;
  right : 0px;
  width: fit-content;
  display: flex;
  flex-direction:row;
  gap: 16px;
  justify-content: flex-end;
  align-items: stretch;
  margin: 40px;
}
.btn-flotante {
  font-size : 16px;
  text-transform : uppercase;
  font-weight : bold;
  color : rgb(255, 255, 255);
  border-radius : 45px;
  letter-spacing : 2px;
  padding : 6px 18px;
  transition-duration : 300ms;
  transition-timing-function : ease;
  transition-delay : 0ms;
  transition-property : all;
  box-shadow : rgba(0, 0, 0, 0.1) 0px 8px 15px;
  z-index : 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-flotante-whatsapp {
  background-color : rgb(37, 211, 102);
}
.btn-flotante-llama {
  background-color : rgb(26,85,151);
}
.btn-flotante-link {
	background-color: #ffffff;
	border: 1px solid #0f4c8d;
	color: #0f4c8d;
}

.btn-flotante:hover {
  background-color : #3e92d6;
  box-shadow : rgba(0, 0, 0, 0.3) 0px 15px 20px;
  transform : translateY(-7px);
}
.btn-flotante-link:hover {
color: #ffffff;
}
@media only screen and (max-width: 960px) {
  .btn-flotante-container {
      width:100%;
      gap:0;
      justify-content: center;
      padding:0;	  
  	  margin: 0px;
  }
  .btn-flotante {
    flex: 1 50%;
    text-align: center;
    font-size : 14px;
    padding : 12px 20px;
    bottom : 20px;
    right : 20px;
    border-radius: 0;
  }
  /* espacio para el footer */
  footer {
    padding-bottom: 60px!important;
  }
}