.icono-uniforme {
    font-size: 24px;
}
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.main-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.main-button i {
  color: white;
  font-size: 24px;
}

.contact-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  padding: 5px;
  display: none;
  background: transparent;
  box-shadow: none;
}

.purpose-menu {
  position: fixed;
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  display: none;
  min-width: 140px;
}

.contact-options.active,
.purpose-menu.active {
  display: block;
}

.contact-option {
  font-size: 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0px -5px 5px 0px;
  position: relative;
  border-radius: 50%;
}

.contact-option i {
  font-size: 20px;
  color: white !important;
}

/* Estilos específicos para cada icono con su círculo */
.contact-option:nth-child(1) {
  background-color: #25d366; /* WhatsApp verde */
  box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

.contact-option:nth-child(2) {
  background-color: #007bff; /* Teléfono azul */
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
}

.contact-option:nth-child(3) {
  background-color: #dc3545; /* Email rojo */
  box-shadow: 0 2px 5px rgba(220, 53, 69, 0.3);
}

.contact-option:nth-child(4) {
  background-color: #6610f2; /* Robot morado */
  box-shadow: 0 2px 5px rgba(102, 16, 242, 0.3);
}

.contact-option:hover,
.contact-option.active {
  transform: scale(1.1);
  opacity: 0.9;
}

.purpose-option {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.purpose-option:hover {
  background: #f5f5f5;
}

.purpose-option i {
  margin-right: 10px;
  font-size: 20px;
}

/* Colores específicos para los iconos */
.contact-option .fa-whatsapp {
  color: #25d366;
}

.contact-option .fa-phone {
  color: #007bff;
}

.contact-option .fa-envelope {
  color: #dc3545;
}

.contact-option .fa-robot {
  color: #6610f2;
}

.purpose-option .fa-headset {
  color: #28a745;
}

.purpose-option .fa-shopping-cart {
  color: #ffc107;
} 