/* Estilos para botões de contato flutuantes */
.contact-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}

.contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-bg);
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-speed) ease;
}

.contact-btn:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-speed) ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.cta-section {
  background-color: var(--dark-secondary);
  padding: 3rem 0;
  text-align: center;
  margin: 3rem 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Responsividade para botões de contato */
@media screen and (max-width: 768px) {
  .contact-buttons {
    bottom: 80px;
    right: 10px;
  }
  
  .contact-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    right: 10px;
    bottom: 15px;
  }
}
