
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.typ{
  font-family: 'Rubik', sans-serif;
}

.bg_azul{
  background-color: #0072bc;
  color: #ffffff;
}


.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  border-radius: 35px;
  font-size: 24px;
  line-height: 1.33;
}

.btn-circle {
  width: 40px;
  height: 40px;
  padding: 6px 0px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.42857;
}



.btn-flotante {
  font-size: 16px; /* Cambiar el tamaño de la tipografia */
  text-transform: uppercase; /* Texto en mayusculas */
  font-weight: bold; /* Fuente en negrita o bold */
  color: #ffb838; /* Color del texto */
  border-radius: 30px; /* Borde del boton */
  letter-spacing: 2px; /* Espacio entre letras */
  background-color: #018eea; /* Color de fondo */
  padding: 9px 15px; /* Relleno del boton */
  position: fixed;
  bottom: 40px;
  right: 40px;
  transition: all 300ms ease 0ms;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
  }
  .btn-flotante:hover {
  background-color: #648DA1; /* Color de fondo al pasar el cursor */
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-7px);
  }


  .btn-flotante-wsp {
    font-size: 16px; /* Cambiar el tamaño de la tipografia */
    text-transform: uppercase; /* Texto en mayusculas */
    font-weight: bold; /* Fuente en negrita o bold */
    color: #ffffff; /* Color del texto */
    border-radius: 30px; /* Borde del boton */
    letter-spacing: 2px; /* Espacio entre letras */
    background-color: #00f155; /* Color de fondo */
    padding: 9px 15px; /* Relleno del boton */
    position: fixed;
    bottom: 100px;
    right: 40px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    }
    .btn-flotante-wsp:hover {
    background-color: #648DA1; /* Color de fondo al pasar el cursor */
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-7px);
    }



  @media only screen and (max-width: 600px) {
  .btn-flotante {
  font-size: 14px;
  padding: 12px 20px;
  bottom: 20px;
  right: 20px;
  }
  .btn-flotante-wsp {
    font-size: 14px;
    padding: 12px 20px;
    bottom: 70px;
    right: 20px;
    }
  }
