/* Canaleco DryWall - ajustes específicos do site (não faz parte do tema original) */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

.mobile-menu-contact {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-badge {
  border: 1px solid var(--th-border-color, #e1e4e5);
  border-radius: 10px;
  padding: 22px 10px;
  text-align: center;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--title-color, #101840);
  background: var(--white-color, #fff);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card {
  background: var(--smoke-color, #f8f8f8);
  border-radius: 12px;
}
.contact-card .box-icon {
  color: var(--theme-color, #F47629);
}

@media (max-width: 575px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
