.contenedor-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.boton-flotante {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.boton-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Color primario marca / Teléfono */
.boton-telefono {
  background-color: #FF671C;
}

/* Color oficial WhatsApp */
.boton-whatsapp {
  background-color: #25D366;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .contenedor-flotante {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .boton-flotante {
    width: 48px;
    height: 48px;
  }
  
  .boton-flotante svg {
    width: 22px;
    height: 22px;
  }
}