/* Botones flotantes globales - Estilo yo_soy1.php */
.botones-flotantes-global {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.boton-flotante-global {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #333 !important;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 220px;
  border: 1px solid #e9ecef;
}

.boton-flotante-global img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.boton-flotante-global:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  background: white;
  border-color: #96aebe;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .boton-flotante-global {
    min-width: 180px;
    padding: 10px 14px;
    font-size: 14px;
  }
  .boton-flotante-global img {
    width: 20px;
    height: 20px;
  }
}