/* ============================
   Archivo: styles.css
   Proyecto: Clean Max
   ============================ */



.btn-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.btn-whatsapp img {
  width: 35px;
  height: 35px;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
}

#hero p{
  font-size: 1.25rem;
  color: #333333;
}

@media (max-width: 767px) {
  #contact-content {
    display: none;
  }

  #contact-content.active {
    display: flex;
  }
}