/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
.boxVerde {
  background-color: var(--cnvs-themecolor) !important;
  color: #fff;
}

.textVerde {
  color: var(--cnvs-themecolor) !important;
}

.section-deps {
  padding: 100px 0;
}

.subtituloSlide p {
  font-size: 16px;
  margin: 0;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 400;
}

.whatsapp-float {
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  bottom: 15px;
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Setinha do balão */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #000;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.depoimentos_text {
    font-size: 0.9rem;
    line-height: 1.3;
    font-style: italic;
}

