/*
Theme Name: Astra Child
Description: Tema hijo de Astra
Author: Julieth
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

.wa-float-btn{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  z-index: 99999;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.wa-float-btn:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.wa-float-btn svg{
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@media (max-width: 767px){
  .wa-float-btn{
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .wa-float-btn svg{
    width: 30px;
    height: 30px;
  }
}