/* ================= BUTTON ================= */

.button{
  padding: 12px 24px;
  background: #e95c1a;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
}

/* Tablet */
@media (max-width: 1024px){
  .button{
    padding: 11px 22px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 782px){
  .button{
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* Mobile 360 / 390 */
@media (max-width: 420px){
  .button{
    padding: 10px 18px;
    font-size: 14px;
  }
}
/* ================= COMPONENT: Icon Item ================= */
/* ================= COMPONENT: Icon Item ================= */

.icon-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-item__icon img{
  width: 40px;
  height: auto;
  display: block;
}

.icon-item__text strong{
  font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px){
  .icon-item{
    gap: 12px;
  }

  .icon-item__icon img{
    width: 34px;
  }
}

/* Mobile */
@media (max-width: 782px){
  .icon-item{
    gap: 10px;
  }

  .icon-item__icon img{
    width: 30px;
  }
}

/* Mobile 360 / 390 */
@media (max-width: 420px){
  .icon-item{
    gap: 8px;
  }

  .icon-item__icon img{
    width: 26px;
  }
}

/* =========================================================
   BOTÓN WHATSAPP FLOTANTE
========================================================= */

/* ================= BOTÓN WHATSAPP FLOTANTE ================= */

.float-whatsapp{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;

  width: 74px;
  height: 74px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  text-decoration: none;
}

.float-whatsapp__img{
  width: 74px;
  height: 74px;
  display: block;
}

/* Tablet */
@media (max-width: 1024px){
  .float-whatsapp,
  .float-whatsapp__img{
    width: 66px;
    height: 66px;
  }
}

/* Mobile */
@media (max-width: 782px){
  .float-whatsapp,
  .float-whatsapp__img{
    width: 60px;
    height: 60px;
  }

  .float-whatsapp{
    right: 18px;
    bottom: 18px;
  }
}

/* Mobile 360 / 390 */
@media (max-width: 420px){
  .float-whatsapp,
  .float-whatsapp__img{
    width: 54px;
    height: 54px;
  }

  .float-whatsapp{
    right: 14px;
    bottom: 14px;
  }
}